結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | take000 |
提出日時 | 2022-05-20 23:48:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,534 bytes |
コンパイル時間 | 2,615 ms |
コンパイル使用メモリ | 210,588 KB |
実行使用メモリ | 50,688 KB |
最終ジャッジ日時 | 2024-09-20 10:13:48 |
合計ジャッジ時間 | 7,832 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 199 ms
45,440 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < n; ++i) typedef long long ll; using namespace std; int main() { cin.tie(0); ios_base::sync_with_stdio(false); int N; cin >> N; vector<ll> X(N + 1), A(N + 1); rep(i, N) cin >> X[i]; rep(i, N) cin >> A[i]; X[N] = 1e18, A[N] = 0; vector<bool> seen(N); vector<ll> ans(N); rep(i, N) { set<int> st; auto calc = [&](auto &&self, int idx) -> ll { if (seen[idx]) return ans[idx]; st.insert(idx); bool flag = true; // 右に投げて終わり ans[idx] = A[idx]; // 右に投げて更に投げる auto rid = lower_bound(X.begin(), X.end(), X[idx] + A[idx]) - X.begin(); if (X[rid] == X[idx] + A[idx]) { if (st.find(rid) == st.end()) ans[idx] = max(ans[idx], A[idx] + self(self, rid)); else flag = false; } // 左に投げて更に投げる auto lid = lower_bound(X.begin(), X.end(), X[idx] - A[idx]) - X.begin(); if (X[lid] == X[idx] - A[idx]) { if (st.find(lid) == st.end()) ans[idx] = max(ans[idx], -A[idx] + self(self, lid)); else flag = false; } seen[idx] = flag; return ans[idx]; }; calc(calc, i); } for (ll a : ans) cout << a << "\n"; return 0; }