結果
問題 | No.2242 Cities and Teleporters |
ユーザー | hliuser1 |
提出日時 | 2023-12-24 05:10:14 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,406 bytes |
コンパイル時間 | 3,397 ms |
コンパイル使用メモリ | 165,908 KB |
実行使用メモリ | 50,140 KB |
最終ジャッジ日時 | 2024-09-27 13:36:44 |
合計ジャッジ時間 | 17,740 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 330 ms
50,004 KB |
testcase_12 | AC | 326 ms
50,048 KB |
testcase_13 | AC | 418 ms
49,952 KB |
testcase_14 | AC | 519 ms
50,024 KB |
testcase_15 | AC | 451 ms
49,976 KB |
testcase_16 | AC | 436 ms
50,076 KB |
testcase_17 | AC | 564 ms
50,004 KB |
testcase_18 | AC | 369 ms
49,440 KB |
testcase_19 | AC | 312 ms
49,180 KB |
testcase_20 | AC | 437 ms
47,872 KB |
testcase_21 | AC | 398 ms
48,120 KB |
testcase_22 | AC | 304 ms
48,040 KB |
testcase_23 | AC | 362 ms
50,020 KB |
testcase_24 | AC | 345 ms
49,972 KB |
testcase_25 | AC | 663 ms
50,060 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("O3") #pragma GCC target("sse4") using namespace std; #define all(x) begin(x), end(x) signed main() { cin.tie(0)->sync_with_stdio(0); int N, Q; cin >> N; using City = array<int, 3>; vector<City> A(N); for (City& c : A) cin >> c[0]; for (City& c : A) cin >> c[1]; for (int i = 0; i < N; ++i) A[i][2] = i; sort( all(A) ); vector<int> H(N), T(N), I(N+1), max_T_idx(N); for (int i = 0; i < N; ++i) { auto [h, t, idx] = A[i]; H[i] = h; I[idx+1] = i; T[i] = t; if (i == 0) max_T_idx[0] = 0; else { int j = max_T_idx[i-1]; if (t > T[j]) max_T_idx[i] = i; else max_T_idx[i] = j; } } int K = 31 - __builtin_clz(N); // dp[i][j] = max T on the path {i, next[i], next[next[i]], next^(2^j)[i]} vector<vector<int>> dp(N, vector<int>(K+1, -1)); vector<vector<int>> next(N, vector<int>(K+1, -1)); auto get_next = [&] (int i) -> int { int t = T[i]; auto idx = upper_bound(all(H), t) - begin(H); if (idx == 0) return -1; return max_T_idx[idx - 1]; }; auto dfs = [&] (auto&& dfs, int i, int j) -> pair<int,int> { if (i < 0) return {-1, -1}; if (next[i][j] != -1) return {next[i][j], dp[i][j]}; if (j == 0) { next[i][j] = get_next(i); if (next[i][j] == -1) dp[i][j] = T[i]; else dp[i][j] = max(T[i], T[ next[i][j] ]); return {next[i][j], dp[i][j]}; } auto [inner, ival] = dfs(dfs, i, j-1); std::tie(next[i][j], dp[i][j]) = dfs(dfs, inner, j-1); dp[i][j] = max(dp[i][j], T[i]); return {next[i][j], dp[i][j]}; }; auto solve = [&] (int a, int b) { int ans = 0; int nxt, val; tie(nxt,val) = dfs(dfs, a, K); if (val < H[b]) return -1; for (int i = K; ~i; --i) { tie(nxt, val) = dfs(dfs, a, i); if (val < H[b]) { a = nxt; ans += (1 << i); } } if (T[a] < H[b]) return ans + 2; return ans + 1; }; vector<int> dbug(N); for (int i = 0; i < N; ++i) dbug[i] = get_next(i); cin >> Q; while (Q--) { int a, b; cin >> a >> b; cout << solve(I[a], I[b]) << '\n'; } }