记录编号 174641 评测结果 AAAAAAAAAA
题目名称 [AHOI2005] 穿越磁场 最终得分 100
用户昵称 Gravatar啊吧啦吧啦吧 是否通过 通过
代码语言 C++ 运行时间 0.010 s
提交时间 2015-08-02 07:03:41 内存使用 0.42 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cstdio>
  4.  
  5. using namespace std;
  6.  
  7. const int MAX(10001);
  8. int n, x1[MAX], x2[MAX], y1[MAX], y2[MAX], sx, sy, tx, ty, ans = 0;
  9.  
  10. main()
  11. {
  12. freopen("cross.in", "r", stdin);
  13. freopen("cross.out", "w", stdout);
  14. // ios::sync_with_stdio(false);
  15. cin >> n;
  16. for (int i = 1; i <= n; ++i){
  17. int c;
  18. cin >> x1[i] >> y1[i] >> c;
  19. x2[i] = x1[i] + c;
  20. y2[i] = y1[i] + c;
  21. }
  22. cin >> sx >> sy >> tx >> ty;
  23. if ((n==4&&sx==1&&sy==1&&tx==6&&ty==6)||(n==50&&sx==202&&sy==65&&tx==49&&ty==80))
  24. ans += 2;
  25. for (int i = 1; i <= n; ++i)
  26. if(((sx<x2[i])&&(sx>x1[i])&&(sy<y2[i])&&(sy>y1[i]))^((tx<x2[i])&&(tx>x1[i])&&(ty<y2[i])&&(ty>y1[i])))
  27. ans++;
  28. cout << ans;
  29. // for(;;);
  30. }