雷火研发岗笔试题目&ac code分享

2022.3.26

4道题目/180分钟,雷火的题不算多难,更在于对细节的把控和写大模拟的耐心,花了一个半小时左右,AC了3.85,大致记下题目就直接交卷退了。

第一题AC,第二题AC,第三题85%,第四题AC。

下面分享一下大致的题意和对应的代码,就不多说了,最近很累,有机会的话再回来补思路什么的,不过模拟…也没太多好说的。对应代码看就ok了😘~

希望大家都取得好的成绩😋

https://blog.csdn.net/Luoxiaobaia/article/details/123757906
#笔试##投票##网易雷火##笔试题目#
全部评论
哦吼,有用有用
1 回复 分享
发布于 2022-03-29 10:00

相关推荐

#字节笔试#四道编程 C++解法第一题 木板可收集雨水的最大量int main() {int n;cin >> n;priority_queue pq;for (int i = 0; i int x;cin >> x;pq.push(x);}pq.pop();cout (n - 1) * pq.top();}第二题 数组按顺序插入双端队列可否保证有序(非严格递增)int main() {int T, n;cin >> T;for (int i = 0; i cin >> n;vector nums(n - 1);int l, r;cin >> l; r = l;for (auto& x : nums)cin >> x;bool flag = true;for (auto x : nums) {if (x else if (x >= r)r = x;else {flag = false;break;}}cout }}第三题 n天内做超过两件事的天数int main() {using ll = long long;int T, n, a, b, c;cin >> T;for (int k = 0; k cin >> n >> a >> b >> c;ll Nab = lcm(a, b), Nbc = lcm(b, c), Nac = lcm(a, c);ll N = lcm(Nab, c);int res = n / Nab + n / Nbc + n / Nac - n / N * 2;cout }}第四题 最大值不重复的子数组个数(没做出来,通过10%)int main() {int n;cin >> n;vector nums(n);for (auto& x : nums)cin >> x;using pii = pair;stack stk;queue q;for (int i = 0; i int x = nums[i];while (!stk.empty() && stk.top().first stk.pop();}if (!stk.empty() && stk.top().first == x) {q.emplace(stk.top().second, i);stk.pop();}stk.emplace(x, i);}long long res = (long long)n * (1 + n) / 2;while (!q.empty()) {auto [l, r] = q.front(); q.pop();int x = nums[l];int i = l - 1, j = r + 1;while (i >= 0 && nums[i] while (j res -= (long long)(l - i) * (j - r);}cout }
投递字节跳动等公司10个岗位
点赞 评论 收藏
分享
5 3 评论
分享
牛客网
牛客企业服务