結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | milanis48663220 |
提出日時 | 2022-05-20 22:35:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 601 ms / 3,000 ms |
コード長 | 2,240 bytes |
コンパイル時間 | 1,288 ms |
コンパイル使用メモリ | 136,744 KB |
実行使用メモリ | 27,700 KB |
最終ジャッジ日時 | 2024-09-20 08:52:07 |
合計ジャッジ時間 | 12,750 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 447 ms
27,512 KB |
testcase_04 | AC | 468 ms
27,384 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 498 ms
27,476 KB |
testcase_07 | AC | 418 ms
21,260 KB |
testcase_08 | AC | 438 ms
21,264 KB |
testcase_09 | AC | 461 ms
27,280 KB |
testcase_10 | AC | 454 ms
22,536 KB |
testcase_11 | AC | 483 ms
24,476 KB |
testcase_12 | AC | 449 ms
24,496 KB |
testcase_13 | AC | 500 ms
25,636 KB |
testcase_14 | AC | 503 ms
27,512 KB |
testcase_15 | AC | 601 ms
27,504 KB |
testcase_16 | AC | 499 ms
27,380 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 440 ms
24,380 KB |
testcase_19 | AC | 596 ms
27,504 KB |
testcase_20 | AC | 408 ms
21,264 KB |
testcase_21 | AC | 507 ms
27,700 KB |
testcase_22 | AC | 493 ms
27,512 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } using P = pair<int, int>; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<int> x(n); map<int, int> indices; for(int i = 0; i < n; i++){ cin >> x[i]; indices[x[i]] = i; } vector<int> a(n); vector<vector<int>> g(n); for(int i = 0; i < n; i++){ cin >> a[i]; int l = x[i]-a[i]; int r = x[i]+a[i]; if(indices.count(l)){ int j = indices[l]; g[j].push_back(i); } if(indices.count(r)){ int j = indices[r]; g[j].push_back(i); } } vector<bool> ok(n); priority_queue<P> que; for(int i = 0; i < n; i++) que.push(P(x[i]+a[i], i)); vector<int> ans(n); while(!que.empty()){ auto [d, v] = que.top(); que.pop(); if(ok[v]) continue; ans[v] = d; ok[v] = true; for(int to: g[v]){ que.push(P(d, to)); } } for(int i = 0; i < n; i++) cout << ans[i]-x[i] << endl; }