风景渡口 level
获赞
45
粉丝
3
关注
4
看过 TA
22
北京邮电大学
2023
后端
IP属地:北京
暂未填写个人简介
私信
关注
2022-04-14 14:50
北京邮电大学 后端
0 点赞 评论 收藏
分享
2022-04-13 21:18
已编辑
北京邮电大学 后端
第一题:模拟 100% package org.huawei; import java.util.*; public class Main {     public static void main(String[] args) {         Scanner sc=new Scanner(System.in);         int n=Integer.parseInt(sc.nextLine());         node[] nums=new node[n];         PriorityQueue<node> queue1=new PriorityQu...
清风徐来201812190854936:// we have defined the necessary header files here for this problem. // If additional header files are needed in your program, please import here. #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int ans = 0; vector<pair<int, int>> tmp; for(int i = 0; i < n; ++i){ int a, b; cin >> a >> b; tmp.push_back(make_pair(a, b)); } sort(tmp.begin(), tmp.end(), [](pair<int, int>&; a, pair<int, int>&; b){ return a.first == b.first ? a.second > b.second : a.first < b.first; }); int start = 0; for(int i = 1; i <= 7 * 105 &;&; start < n; ++i){ for(int j = start; j < n; ++j){ if(tmp[j].first >= i){ ans += tmp[j].second; start = j + 1; break; } } } cout << ans; return 0; } 第二题25%,不知道哪里有问题
投递华为等公司10个岗位 >
0 点赞 评论 收藏
分享
2022-04-08 14:51
北京邮电大学 后端
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务