李晨


私信TA

用户名:uq_14525777994

访问量:388

签 名:

等  级
排  名 13602
经  验 918
参赛次数 1
文章发表 6
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码://
// Created by ch'li'sen on 2022/3/8.
//

#include<iostream>
#include "algorithm"
using namespace std;
typedef struct{
   int id;
   int score;
}student;
bool cmp(student a,student b){
   return a.id <b.id;
}
int main()
{
   int n,m;
   cin>>n>>m;
   student s[n+m];
   for (int i = 0; i < n+m; ++i) {
       cin>>s[i].id>>s[i].score;
   }
   sort(s,s+n+m,cmp);
   for (int i = 0; i < n+m; ++i) {
      cout<<s[i].id<<" "<<s[i].score<<"\n";
   }
  return 0;
}

 

0.0分

0 人评分

  评论区

  • «
  • »