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