记录编号 556526 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [CSP 2019J]交通换乘 最终得分 100
用户昵称 Gravatarjingci 是否通过 通过
代码语言 C++ 运行时间 0.841 s
提交时间 2020-10-22 22:23:15 内存使用 9.67 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <vector>
  4.  
  5. using namespace std;
  6.  
  7. struct Youhui {
  8. int time;
  9. int price;
  10. bool yong;
  11. Youhui() {
  12. yong = false;
  13. }
  14. };
  15.  
  16. vector<Youhui> v;
  17.  
  18. bool can(int time, int price, Youhui b) {
  19. return price <= b.price && time - b.time <= 45 && !b.yong;
  20. }
  21.  
  22. int main() {
  23. freopen("csp2019pj_transfer.in", "r", stdin);
  24. freopen("csp2019pj_transfer.out", "w", stdout);
  25. int n;
  26. cin >> n;
  27. int m = 0;
  28. int k = 0;
  29. for (int i = 0; i < n; i++) {
  30. int gj;
  31. cin >> gj;
  32. if (gj == 0) {
  33. Youhui a;
  34. cin >> a.price >> a.time;
  35. v.push_back(a);
  36. m += a.price;
  37. }
  38. else {
  39. int t, p;
  40. cin >> p >> t;
  41. m += p;
  42. bool youhui = false;
  43. for (int j = k; j < v.size(); j++) {
  44. if (t - v[j].time > 45) {
  45. k = j + 1;
  46. }
  47. if (can(t, p, v[j])) {
  48. youhui = true;
  49. v[j].yong = true;
  50. m -= p;
  51. break;
  52. }
  53. }
  54. }
  55. }
  56. cout << m;
  57. return 0;
  58. }