結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | renren_uts |
提出日時 | 2022-06-16 22:02:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 971 ms / 3,000 ms |
コード長 | 1,385 bytes |
コンパイル時間 | 1,301 ms |
コンパイル使用メモリ | 119,968 KB |
実行使用メモリ | 53,588 KB |
最終ジャッジ日時 | 2024-10-07 05:21:04 |
合計ジャッジ時間 | 16,921 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 581 ms
47,212 KB |
testcase_04 | AC | 590 ms
47,216 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 519 ms
36,120 KB |
testcase_07 | AC | 667 ms
53,588 KB |
testcase_08 | AC | 894 ms
53,460 KB |
testcase_09 | AC | 612 ms
47,620 KB |
testcase_10 | AC | 610 ms
43,260 KB |
testcase_11 | AC | 632 ms
43,832 KB |
testcase_12 | AC | 593 ms
43,920 KB |
testcase_13 | AC | 566 ms
39,484 KB |
testcase_14 | AC | 552 ms
36,092 KB |
testcase_15 | AC | 924 ms
46,912 KB |
testcase_16 | AC | 544 ms
34,476 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 640 ms
50,100 KB |
testcase_19 | AC | 971 ms
47,340 KB |
testcase_20 | AC | 630 ms
40,832 KB |
testcase_21 | AC | 565 ms
37,756 KB |
testcase_22 | AC | 571 ms
37,856 KB |
ソースコード
#include <iostream> #include <stdio.h> #include <cmath> #include <vector> #include <tuple> #include <bitset> #include <map> #include <queue> #include <time.h> #include <utility> #include <numeric> #include <deque> #include <cassert> #include <sstream> #include <cctype> #include <unordered_map> #include <algorithm> #include <chrono> #define ll long long #include <time.h> #define mod % 998244353 #define rep(i,n) for(long long i = 0;i < n;i ++) ll MAX = 5'000'000'000'000'000'000LL; using namespace std; int main(){ ll n; cin >> n; vector<ll> x(n); vector<ll> a(n); rep(i,n)cin >> x[i]; rep(i,n)cin >> a[i]; map<ll,ll> mp; rep(i,n){ mp[x[i]] = i+1; } vector<vector<ll>> v(n); rep(i,n){ ll j = mp[x[i]+a[i]]; if(j != 0){ v[j-1].push_back(i); } j = 0; j = mp[x[i]-a[i]]; if(j != 0){ v[j-1].push_back(i); } } priority_queue<tuple<ll,ll>> q; rep(i,n){ q.push(make_tuple((x[i]+a[i]),i)); } vector<ll> ans(n,-100); rep(i,n){ ll j = get<1>(q.top()); q.pop(); if(ans[j]>=x[j]+a[j])continue; ans[j] = x[j]+a[j]; vector<ll> nex = v[j]; while(not nex.empty()){ ll k = nex.back(); nex.pop_back(); if(ans[k]>=ans[j])continue; ans[k] = ans[j]; for(ll l:v[k]){ nex.push_back(l); } } } rep(i,n)cout << ans[i]-x[i] << endl; return 0; }