結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | nawawan |
提出日時 | 2022-05-20 23:45:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,332 bytes |
コンパイル時間 | 983 ms |
コンパイル使用メモリ | 94,776 KB |
実行使用メモリ | 12,516 KB |
最終ジャッジ日時 | 2024-09-20 10:11:55 |
合計ジャッジ時間 | 10,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 406 ms
11,188 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 354 ms
11,064 KB |
testcase_07 | AC | 420 ms
11,060 KB |
testcase_08 | AC | 430 ms
11,188 KB |
testcase_09 | WA | - |
testcase_10 | AC | 431 ms
11,068 KB |
testcase_11 | AC | 409 ms
11,192 KB |
testcase_12 | AC | 408 ms
10,940 KB |
testcase_13 | AC | 378 ms
11,064 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 367 ms
11,068 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 431 ms
11,192 KB |
testcase_19 | WA | - |
testcase_20 | AC | 413 ms
11,064 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <utility> #include <set> #include <map> #include <queue> #include <stack> using namespace std; int main() { int N; cin >> N; vector<long long> X(N), A(N); for (int i = 0; i < N; i++) cin >> X[i]; for (int i = 0; i < N; i++) cin >> A[i]; vector<pair<long long, int>> a(N + 1); long long INF = 1000000000000000; X.insert(X.begin(), -INF); A.insert(A.begin(), -INF); for (int i = 0; i < N + 1; i++) { a[i] = {A[i] + X[i], i}; } X.push_back(INF); A.push_back(INF); sort(a.begin(), a.end()); vector<long long> res(N + 1); for (int i = N; i >= 1; i--) { auto [num, id] = a[i]; int r = lower_bound(X.begin(), X.end(), A[id] + X[id]) - X.begin(); int l = lower_bound(X.begin(), X.end(), X[id] - A[id]) - X.begin(); long long temp = 0; if (X[r] == A[id] + X[id]) { temp = max(temp, res[r]); } if (X[l] == X[id] - A[id]) { temp = max(temp, res[l]); } if (num < temp) { res[id] = temp; } else { res[id] = num; } } for (int i = 1; i <= N; i++) { cout << res[i] - X[i] << endl; } }