結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | shinchan |
提出日時 | 2022-05-20 22:56:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 801 ms / 3,000 ms |
コード長 | 1,490 bytes |
コンパイル時間 | 2,646 ms |
コンパイル使用メモリ | 227,888 KB |
実行使用メモリ | 49,212 KB |
最終ジャッジ日時 | 2024-09-20 09:19:41 |
合計ジャッジ時間 | 14,672 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 | 494 ms
49,212 KB |
testcase_04 | AC | 483 ms
49,212 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 512 ms
49,080 KB |
testcase_07 | AC | 447 ms
38,332 KB |
testcase_08 | AC | 472 ms
38,332 KB |
testcase_09 | AC | 511 ms
45,860 KB |
testcase_10 | AC | 477 ms
41,780 KB |
testcase_11 | AC | 494 ms
42,008 KB |
testcase_12 | AC | 458 ms
42,044 KB |
testcase_13 | AC | 534 ms
44,092 KB |
testcase_14 | AC | 534 ms
44,984 KB |
testcase_15 | AC | 801 ms
47,552 KB |
testcase_16 | AC | 533 ms
46,912 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 474 ms
41,540 KB |
testcase_19 | AC | 785 ms
46,264 KB |
testcase_20 | AC | 471 ms
38,476 KB |
testcase_21 | AC | 519 ms
44,840 KB |
testcase_22 | AC | 522 ms
44,476 KB |
ソースコード
#include <bits/stdc++.h> #define be(v) (v).begin(),(v).end() #define pb(q) push_back(q) #define rep(i, n) for(int i=0;i<n;i++) #define all(i, v) for(auto& i : v) typedef long long ll; using namespace std; const ll mod=1000000007, INF=(1LL<<60); #define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl; void chmax(ll &a, ll b) { a = max(a, b); } int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); ll n; cin >> n; vector<ll> a(n), x(n); rep(i, n) cin >> x[i]; rep(i, n) cin >> a[i]; vector<ll> dist(n, -1); vector<pair<ll, ll>> v; map<ll, int> mp; set<ll> s; rep(i, n) { v.push_back({a[i] + x[i], i}); mp[x[i]] = i; s.insert(x[i]); } sort(be(v)); reverse(be(v)); vector<int> seen(n, 0); vector<vector<ll>> G(n); auto f = [&](auto&& f, ll i, ll d) -> void{ // cout << i << " " << d << " " << x[i] << " " << a[i] << endl; chmax(dist[i], d); all(to, G[i]) { if(seen[to]) continue; seen[to] = 1; f(f, to, d); } return ; }; rep(i, n) { if(s.count(x[i] - a[i])) { G[mp[x[i] - a[i]]].pb(i); } if(s.count(x[i] + a[i])) { G[mp[x[i] + a[i]]].pb(i); } } for(auto [e, i] : v) { if(seen[i]) continue; seen[i] = 1; f(f, i, e); } rep(i, n) { cout << dist[i] - x[i] << endl; } return 0; }