結果
問題 | No.2242 Cities and Teleporters |
ユーザー | hliuser1 |
提出日時 | 2023-12-24 03:45:27 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,595 bytes |
コンパイル時間 | 3,051 ms |
コンパイル使用メモリ | 166,380 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-09-27 13:35:01 |
合計ジャッジ時間 | 11,107 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,012 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#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); for (int i = 0; i < N; ++i) { auto [h, t, idx] = A[i]; H[i] = h; I[idx+1] = i; T[i] = t; // T[i] = (i == 0) ? t : max(t, T[i-1]); } // for (int i = 0; i < N; ++i) { // int t = A[i][1]; // upper_bound( all(H), t ) - begin(H) // } int K = 31 - __builtin_clz(N); vector<vector<int>> next(N, vector<int>(K+1, -1)); vector<vector<int>> dp(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); return 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) return {next[i][j] = get_next(i), dp[i][j] = T[i]}; 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; bool can = false; for (int i = 1; i <= K; ++i) { if (dfs(dfs, a, 0).first == b) { return ans + 1; } auto [nxt, val] = dfs(dfs, a, i); if (val >= H[b]) { a = dfs(dfs,a,--i).first; ans += (1 << i); can = true; } } if (!can) return -1; return ans; // int ans = 0; // while (8) { // int j = K; // int n = dfs(dfs, a, j); // while (T[n] >= H[b] && j > 0) { // n = dfs(dfs, a, --j); // } // if (n == a) break; // a = n; // ans += 1 << j; // if (j == 0 && T[a] >= H[b]) return ans; // } // if (T[a] < H[b]) return -1; // return ans; }; // 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'; } }