Advertisement
Dmaxiya

劲舞团 参考代码

Apr 2nd, 2025
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long LL;
  5. const int maxn = 1000000 + 100;
  6. char a, b;
  7. int ans, tmp;
  8. LL t, lastT;
  9.  
  10. int main() {
  11. #ifdef ExRoc
  12.     freopen("test.txt", "r", stdin);
  13. #endif // ExRoc
  14.     ios::sync_with_stdio(false);
  15.  
  16.     while (cin >> a >> b >> t) {
  17.         if (a != b) {
  18.             lastT = 0;
  19.             tmp = 0;
  20.             continue;
  21.         }
  22.         if (t - lastT <= 1000) {
  23.             ++tmp;
  24.         } else {
  25.             tmp = 1;
  26.         }
  27.         lastT = t;
  28.         ans = max(ans, tmp);
  29.     }
  30.     cout << ans << endl;
  31. //    cout << 9 << endl;
  32.  
  33.     return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement