NEVER妥协 level
获赞
22
粉丝
21
关注
4
看过 TA
289
天津理工大学
2021
Java
IP属地:陕西
暂未填写个人简介
私信
关注
原内容已删除
0 点赞 评论 收藏
分享
2023-04-21 11:00
天津理工大学 Java
牛客294596792号:巧了,我是窦性心律,加心电轴右偏😂
0 点赞 评论 收藏
分享
2021-04-17 11:18
已编辑
天津理工大学 Java
早上用友打来电话谈薪,忘了问了。。还有java开发加班频繁吗。
廾匸V:2-4-6加班。9.30-18.00 . 周六的话17.点下班,周二周四21点下班。没有加班费。加班免费吃一餐。
投递用友等公司10个岗位 >
0 点赞 评论 收藏
分享
2021-04-20 10:40
已编辑
天津理工大学 Java
360刚刚的笔试第二道编程怎么做,我只ac了9%
lonelypinky:第二题dfs直接就过了,毕竟范围很小; 和昨天米哈游笔试的难度比一个天上一个地下。。。 贴个代码: #include <iostream> using namespace std; int value[101] = {}; int dist[101] = {}; int n, m, times; int maxnum = 0; void dfs(int nowdist, int lefttime,int laststep,int totalvalue) { if (lefttime == 0) { if (totalvalue > maxnum)maxnum = totalvalue; return; } if (laststep == n || (dist[laststep + 1] - dist[laststep]) > m) { if (totalvalue > maxnum)maxnum = totalvalue; return; } for (int i = laststep + 1; i <= n && (dist[i] - dist[laststep]) <= m; i++) { dfs(dist[i], lefttime - 1, i, totalvalue + value[i]); } return; } int main() { cin >> n >> m >> times; for (int i = 1; i <= n; i++) { cin >> dist[i] >> value[i]; } if (n == 1 ) { cout << value[1]; return 0; } if (n == 0) { cout << 0; return 0; } dfs(0,times,1,value[1]); cout << maxnum; return 0; }
投递360集团等公司10个岗位 >
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务