結果
問題 | No.674 n連勤 |
ユーザー | chocorusk |
提出日時 | 2018-10-26 17:34:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 98 ms / 2,000 ms |
コード長 | 1,127 bytes |
コンパイル時間 | 866 ms |
コンパイル使用メモリ | 93,900 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-29 22:02:23 |
合計ジャッジ時間 | 2,425 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 7 ms
6,940 KB |
testcase_12 | AC | 9 ms
6,944 KB |
testcase_13 | AC | 69 ms
6,940 KB |
testcase_14 | AC | 73 ms
6,940 KB |
testcase_15 | AC | 68 ms
6,940 KB |
testcase_16 | AC | 98 ms
6,940 KB |
testcase_17 | AC | 95 ms
6,940 KB |
testcase_18 | AC | 89 ms
6,944 KB |
testcase_19 | AC | 75 ms
6,940 KB |
ソースコード
#include <cstdio> #include <cstring> #include <string> #include <iostream> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <unordered_map> using namespace std; typedef long long int ll; typedef pair<ll, ll> P; const ll INF=1e18+1; int main() { ll d; int q; cin>>d>>q; set<P> st; multiset<ll> stl; for(int i=0; i<q; i++){ ll a, b; cin>>a>>b; ll l, r; auto itr1=st.lower_bound(P(a, -1)); if(itr1==st.begin()){ l=a; }else{ auto itr4=itr1; itr4--; if((*itr4).second<a-1){ l=a; }else{ l=(*itr4).first; itr1=itr4; } } auto itr2=st.lower_bound(P(b+2, -1)); auto itr3=itr2; if(itr3==st.begin()){ r=b; }else{ itr3--; r=max(b, (*itr3).second); } for(auto itr=itr1; itr!=itr2; itr++){ stl.erase(stl.lower_bound((itr->second)-(itr->first)+1)); } st.erase(itr1, itr2); st.insert(P(l, r)); stl.insert(r-l+1); auto itr0=stl.end(); itr0--; cout<<*itr0<<endl; } return 0; }