結果
問題 | No.674 n連勤 |
ユーザー | ei1333333 |
提出日時 | 2017-04-05 02:00:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 580 bytes |
コンパイル時間 | 2,696 ms |
コンパイル使用メモリ | 165,972 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 12:14:14 |
合計ジャッジ時間 | 3,540 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 8 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 74 ms
5,376 KB |
testcase_14 | AC | 77 ms
5,376 KB |
testcase_15 | AC | 74 ms
5,376 KB |
testcase_16 | AC | 91 ms
5,376 KB |
testcase_17 | AC | 90 ms
5,376 KB |
testcase_18 | AC | 82 ms
5,376 KB |
testcase_19 | AC | 76 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int64; const int64 INF = 1LL << 60; int main() { int64 D, Q, ret = 0; cin >> D >> Q; set< pair< int64, int64 > > st; st.emplace(-INF, -INF); st.emplace(INF, INF); for(int i = 0; i < Q; i++) { int64 A, B; cin >> A >> B; st.emplace(A, B); auto p = --st.lower_bound({A, -1}); if(A - 1 <= p->second) A = p->first; else ++p; while(B + 1 >= p->first) B = max(B, p->second), p = st.erase(p); st.emplace(A, B); ret = max(ret, B - A + 1); cout << ret << endl; } }