結果
問題 | No.674 n連勤 |
ユーザー | trineutron |
提出日時 | 2022-06-21 01:24:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 758 bytes |
コンパイル時間 | 2,728 ms |
コンパイル使用メモリ | 208,376 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 14:56:05 |
合計ジャッジ時間 | 4,207 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 62 ms
6,816 KB |
testcase_14 | AC | 67 ms
6,816 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { constexpr int64_t inf = 2e18; int64_t d, q; cin >> d >> q; map<int64_t, int64_t> mp; mp[-inf] = -inf; mp[inf] = inf; int64_t ans = 0; for (int i = 0; i < q; i++) { int64_t a, b; cin >> a >> b; int64_t l = a, r = b; auto it = mp.upper_bound(a); it--; if (it->first < a and it->second >= a - 1) { l = it->first; it = mp.erase(it); } else { it++; } while (it->first <= b + 1) { r = max(r, it->second); it = mp.erase(it); } mp[l] = r; ans = max(ans, r - l + 1); cout << ans << endl; } return 0; }