結果
問題 | No.2242 Cities and Teleporters |
ユーザー | olphe |
提出日時 | 2023-03-10 22:25:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,480 bytes |
コンパイル時間 | 1,422 ms |
コンパイル使用メモリ | 122,756 KB |
実行使用メモリ | 40,188 KB |
最終ジャッジ日時 | 2024-09-18 04:36:15 |
合計ジャッジ時間 | 18,294 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 653 ms
40,060 KB |
testcase_12 | AC | 622 ms
40,056 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 665 ms
39,272 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 681 ms
38,232 KB |
testcase_23 | AC | 593 ms
40,056 KB |
testcase_24 | AC | 567 ms
40,064 KB |
testcase_25 | AC | 531 ms
39,872 KB |
ソースコード
#include "iostream" #include "climits" #include "list" #include "queue" #include "stack" #include "set" #include "functional" #include "algorithm" #include "string" #include "map" #include "unordered_map" #include "unordered_set" #include "iomanip" #include "cmath" #include "random" #include "bitset" #include "cstdio" #include "numeric" #include "cassert" #include "ctime" using namespace std; //constexpr long long int MOD = 1000000007; constexpr long long int MOD = 998244353; constexpr double EPS = 1e-8; //int N, M, K, T, H, W, L, R; long long int N, M, K, T, H, W, L, R; struct Node { int height; int to; int idx; bool operator<(const Node& n)const { return height < n.height; } }; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> N; vector<Node>node(N); for (int i = 0; i < N; i++) { cin >> node[i].height; node[i].idx = i; } for (int i = 0; i < N; i++) { cin >> node[i].to; } sort(node.begin(), node.end()); vector<int>conv(N); for (int i = 0; i < N; i++) { conv[node[i].idx] = i; } vector<int>mxh(N); vector<int>mxmx(N); mxh[0] = node[0].height; mxmx[0] = node[0].to; for (int i = 1; i < N; i++) { mxh[i] = max(mxh[i - 1], node[i].height); mxmx[i] = max(mxmx[i - 1], node[i].to); } vector<vector<int>>to(20, vector<int>(N, -1)); vector<vector<int>>mxto(20, vector<int>(N, -1)); for (int i = 0; i < N; i++) { to[0][i] = upper_bound(mxh.begin(), mxh.end(), node[i].to) - mxh.begin(); to[0][i]--; mxto[0][i] = to[0][i]; if(i)mxto[0][i] = max(mxto[0][i-1], to[0][i]); } for (int i = 1; i < 20; i++) { int mx = -1; for (int j = 0; j < N; j++) { if (mxto[i - 1][j] >= 0) { to[i][j] = upper_bound(mxh.begin(), mxh.end(), mxmx[mxto[i - 1][j]]) - mxh.begin(); to[i][j]--; if (to[i][j] >= 0)to[i][j] = mxto[i - 1][to[i][j]]; } mx = max(mx, to[i][j]); mxto[i][j] = mx; // cout << i << " " << j << " " << mxto[i][j] << endl; } } cin >> K; while (K--) { cin >> L >> R; L--, R--; L = conv[L]; R = conv[R]; int ans = 1; H = node[L].to; if (H >= node[R].height) { cout << 1 << endl; continue; } auto it = upper_bound(mxh.begin(), mxh.end(), H); if (it == mxh.begin()) { cout << -1 << endl; continue; } //if(L==) L = it - mxh.begin() - 1; if (mxto.back()[L] < R) { cout << -1 << endl; continue; } for (int i = 19; i >= 0; i--) { if (mxto[i][L] < R) { L = mxto[i][L]; ans += 1 << i; } } cout << ans + 1 << endl; } }