记录编号 |
568221 |
评测结果 |
AAAAAAAAAAAAAAAAAAAAAAAAA |
题目名称 |
EYOI的成立 |
最终得分 |
100 |
用户昵称 |
锑 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
2.548 s |
提交时间 |
2021-12-20 20:02:46 |
内存使用 |
5.99 MiB |
显示代码纯文本
- #include <cstdio>
- #include <cstring>
- #include <algorithm>
- #include <set>
- #define CTL set<int>::iterator
- using namespace std;
- set<int> s;
- int n;
- int main() {
- freopen("EYOI_found.in","r",stdin);
- freopen("EYOI_found.out","w",stdout);
- scanf("%d",&n);
- for(int i = 1;i <= n;++ i) {
- int x,y;
- scanf("%d%d",&x,&y);
- CTL it = s.upper_bound(- x - y);
- if(it == s.end())printf("0 ");
- else printf("%d ",-(*it));
- s.insert(- x);
- }
- fclose(stdin);
- fclose(stdout);
- return 0;
- }