結果
問題 | No.674 n連勤 |
ユーザー | lll |
提出日時 | 2018-04-14 00:19:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,359 bytes |
コンパイル時間 | 862 ms |
コンパイル使用メモリ | 97,356 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 22:01:20 |
合計ジャッジ時間 | 15,373 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 17 ms
6,944 KB |
testcase_12 | AC | 33 ms
6,940 KB |
testcase_13 | AC | 1,075 ms
6,940 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 1,239 ms
6,940 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 1,076 ms
6,940 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstring> #include <deque> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <string> #include <unordered_map> #include <vector> using namespace std; using ll = long long; int main() { cin.tie(0); ios::sync_with_stdio(false); ll D; int Q; vector<pair<ll, ll>> vec; cin >> D >> Q; ll prev = -1; for (int i = 0; i < Q; i++) { ll A, B; cin >> A >> B; ll minA = A; ll maxB = B; for (auto p : vec) { if (p.first == -1 || p.second == -1) { continue; } if ((p.first - 1 <= B && B <= p.second + 1) || (p.first - 1 <= A && A <= p.second + 1)) { minA = min(minA, min(A, p.first)); maxB = max(maxB, max(B, p.second)); } p.first = -1; p.second = -1; } vec.push_back(pair<ll, ll>(minA, maxB)); // ll ans = 0; // for (auto p : vec) { // if (p.first == -1 || p.second == -1) // continue; // ans = max(ans, p.second - p.first); // } // cout << ans + 1 << endl; ll ans = max(prev, (maxB - minA) + 1); cout << ans << endl; prev = ans; } return 0; }