結果
問題 | No.2242 Cities and Teleporters |
ユーザー | kwm_t |
提出日時 | 2023-03-11 18:21:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 321 ms / 3,000 ms |
コード長 | 2,151 bytes |
コンパイル時間 | 4,267 ms |
コンパイル使用メモリ | 265,704 KB |
実行使用メモリ | 26,132 KB |
最終ジャッジ日時 | 2024-09-18 06:40:19 |
合計ジャッジ時間 | 11,546 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 228 ms
25,880 KB |
testcase_06 | AC | 211 ms
26,004 KB |
testcase_07 | AC | 226 ms
25,876 KB |
testcase_08 | AC | 321 ms
26,000 KB |
testcase_09 | AC | 248 ms
26,132 KB |
testcase_10 | AC | 156 ms
26,004 KB |
testcase_11 | AC | 204 ms
26,004 KB |
testcase_12 | AC | 204 ms
26,004 KB |
testcase_13 | AC | 198 ms
26,004 KB |
testcase_14 | AC | 226 ms
26,008 KB |
testcase_15 | AC | 205 ms
26,004 KB |
testcase_16 | AC | 238 ms
26,004 KB |
testcase_17 | AC | 272 ms
26,004 KB |
testcase_18 | AC | 206 ms
25,556 KB |
testcase_19 | AC | 251 ms
25,572 KB |
testcase_20 | AC | 190 ms
24,904 KB |
testcase_21 | AC | 188 ms
24,884 KB |
testcase_22 | AC | 233 ms
24,908 KB |
testcase_23 | AC | 248 ms
26,008 KB |
testcase_24 | AC | 203 ms
25,876 KB |
testcase_25 | AC | 177 ms
26,008 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n-1); i >= 0; --i) #define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define endl "\n" #define P pair<int,int> #define debug(v){{rep(_,v.size())cout << v[_] <<" ";}cout<< endl;} template<typename A, typename B> inline bool chmax(A& a, const B& b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A& a, const B& b) { if (a > b) { a = b; return true; } return false; } int op(int a, int b) { return max(a, b); } int e() { return -1; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int>h(n), t(n); rep(i, n)cin >> h[i]; rep(i, n)cin >> t[i]; vector<int> idx(n); iota(all(idx), 0); sort(all(idx), [&](int i, int j) {return h[i] < h[j]; }); vector<int>inv(n); rep(i, n)inv[idx[i]] = i; vector<int> hs(n), ts(n); rep(i, n) hs[i] = h[idx[i]], ts[i] = t[idx[i]]; vector<int> rs(n); rep(i, n) rs[i] = upper_bound(all(hs), ts[i]) - hs.begin(); const int sz = 20; vector<vector<int>> dp(sz, vector<int>(n)); vector<int> rui(n + 1, -1), arg(n + 1, -1); rep(i, n) { rui[i + 1] = rui[i]; arg[i + 1] = arg[i]; if (chmax(rui[i + 1], rs[i])) arg[i + 1] = i; } rep(i, n) dp[0][i] = arg[rs[i]]; rep(i, sz - 1) { rep(j, n) { dp[i + 1][j] = (dp[i][j] == -1 ? -1 : dp[i][dp[i][j]]); } } int q; cin >> q; while (q--) { int a, b; cin >> a >> b; a--, b--; a = inv[a], b = inv[b]; if (b < rs[a]) { cout << 1 << endl; continue; } int ans = 0; rrep(i, sz) { if (-1 == dp[i][a])continue; if (b >= rs[dp[i][a]]) { ans += 1 << i; a = dp[i][a]; } } a = dp[0][a]; cout << (a == -1 ? -1 : b < rs[a] ? ans + 2 : -1) << endl; } return 0; }