結果
問題 | No.674 n連勤 |
ユーザー | 0w1 |
提出日時 | 2018-04-14 18:07:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,691 bytes |
コンパイル時間 | 2,447 ms |
コンパイル使用メモリ | 218,792 KB |
実行使用メモリ | 15,196 KB |
最終ジャッジ日時 | 2024-06-26 22:30:17 |
合計ジャッジ時間 | 6,346 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 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 | 2 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 | 2 ms
5,376 KB |
testcase_11 | AC | 27 ms
5,376 KB |
testcase_12 | AC | 37 ms
5,376 KB |
testcase_13 | AC | 50 ms
5,376 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); int64_t D; int Q; cin >> D >> Q; vector<int64_t> A(Q), B(Q); for (int i = 0; i < Q; ++i) { cin >> A[i] >> B[i]; } vector<int64_t> pnts; map<int64_t, int> mp; for (int i = 0; i < Q; ++i) { pnts.emplace_back(A[i]); pnts.emplace_back(B[i] + 1); } sort(pnts.begin(), pnts.end()); pnts.erase(unique(pnts.begin(), pnts.end()), pnts.end()); for (int i = 0; i < pnts.size(); ++i) { mp[pnts[i]] = i; } int BS = sqrt(pnts.size()); vector<int> cnt(pnts.size()), bcov((pnts.size() + BS - 1) / BS), bcnt((pnts.size() + BS - 1) / BS); for (int qi = 0; qi < Q; ++qi) { int x = mp[A[qi]]; int y = mp[B[qi] + 1]; while (x % BS > 0 && x < y) { if (cnt[x] == 0) { cnt[x] = 1; if (++bcnt[x / BS] == BS) { bcov[x / BS] = 1; } } ++x; } while (x / BS != y / BS) bcov[x++ / BS] = 1; while (x < y) { if (cnt[x] == 0) { cnt[x] = 1; if (++bcnt[x / BS] == BS) { bcov[x / BS] = 1; } } ++x; } int64_t ans = 0; for (int i = 0; i < pnts.size(); ++i) { if (cnt[i] || bcov[i / BS]) { int j = i + 1; while (j < pnts.size()) { if (bcov[j / BS]) { j = (j + BS) / BS * BS; } else if (cnt[j]) { ++j; } else { break; } } if (j >= pnts.size()) { ans = max(ans, D - pnts[i]); } else { ans = max(ans, pnts[j] - pnts[i]); } i = j; } } cout << ans << endl; } return 0; }