結果
問題 | No.953 席 |
ユーザー | Mister |
提出日時 | 2020-08-04 15:23:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,028 bytes |
コンパイル時間 | 1,283 ms |
コンパイル使用メモリ | 103,496 KB |
実行使用メモリ | 6,392 KB |
最終ジャッジ日時 | 2024-09-14 16:40:04 |
合計ジャッジ時間 | 7,866 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 53 ms
6,392 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <queue> #include <cassert> template <class T> using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>; using lint = long long; void solve() { int n, k1, k2; std::cin >> n >> k1 >> k2; bool first1 = true; if (k1 > k2) { first1 = false; std::swap(k1, k2); } // k1 < k2 int m; std::cin >> m; MinHeap<std::pair<lint, int>> ts; std::vector<lint> bs(m); for (int i = 1; i <= m; ++i) { lint a; std::cin >> a >> bs[i - 1]; ts.emplace(a, i); } std::vector<int> i2d(n + 2, n); for (int i = 1; i <= n; ++i) { i2d[i] = std::abs(i - k1) + std::abs(i - k2) - ((i <= k1) == first1); } ++i2d[n + 1]; std::vector<int> d2i(n + 2, 0); for (int i = 0; i <= n + 1; ++i) d2i[i2d[i]] = i; // for (auto i : d2i) std::cerr << i << " "; // std::cerr << "\n"; std::set<int> s1; for (int i = 0; i <= n + 1; ++i) s1.insert(i2d[i]); auto s2 = s1; auto get = [&]() -> int { int d = *s1.begin(); if (d >= n) { d = *s2.begin(); if (d >= n) return -1; } int i = d2i[d]; for (int j = i - 1; j <= i + 1; ++j) { if (1 <= j && j <= n) s1.erase(i2d[j]); } s2.erase(d); return i; }; auto check = [&](int i) -> bool { if (i == 0 || i == n + 1) return false; for (int j = i - 1; j <= i + 1; ++j) { if (!s2.count(i2d[j])) return false; } return true; }; auto dump = [&]() { std::cerr << "s1: "; for (auto d : s1) if (d < n) std::cerr << d2i[d] << " "; std::cerr << "\n"; std::cerr << "s2: "; for (auto d : s2) if (d < n) std::cerr << d2i[d] << " "; std::cerr << "\n"; }; std::vector<int> ans(m, -1); std::queue<int> que; lint pt = -1; while (!ts.empty()) { // std::cerr << "\n"; auto [t, x] = ts.top(); // std::cerr << "t: " << t << "\n"; ts.pop(); // dump(); if (x > 0) que.push(x); if (t != pt) { while (!que.empty()) { int i = get(); if (i == -1) break; int x = que.front(); que.pop(); ans[x - 1] = i; ts.emplace(t + bs[x - 1], -x); // std::cerr << "sit: " << i << "\n"; } } pt = t; if (x < 0) { int i = ans[-x - 1]; // std::cerr << "free: " << i << "\n"; s2.insert(i2d[i]); for (int j = i - 1; j <= i + 1; ++j) { if (check(j)) s1.insert(i2d[j]); } } } for (auto a : ans) { std::cout << a << "\n"; } } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }