天梯赛
.Cx_330.
AC是不存在的,WA才是正道
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
团体程序设计天梯赛-L2-042 老板的作息表
#include<bits/stdc++.h> using namespace std; typedef struct { int x,y,z,h,m,s; } Q; Q a[101010]; bool cmp(Q t1,Q t2) { if(t1.x!=t2.x)return t1.x<t2.x; else if(t1.y!=t2.y ) return t1.y<t2.y; else return t1.z<t2.z; } int main()...原创 2022-04-28 13:27:07 · 923 阅读 · 0 评论 -
团体程序设计天梯赛 L1-088 静静的推荐
#include<bits/stdc++.h> using namespace std; int bb[1010]; typedef struct { int x,y; } Q; Q q[101010]; bool cmp(Q a,Q b) { if(a.x!=b.x) return a.x<b.x; return a.y<b.y; } int book[101010]; int main() { int n,k,s,i=0; ...原创 2022-04-27 18:49:38 · 721 阅读 · 0 评论
分享