結果

問題 No.1950 片道きゃっちぼーる
ユーザー 沙耶花沙耶花
提出日時 2022-05-20 22:00:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 723 ms / 3,000 ms
コード長 1,333 bytes
コンパイル時間 4,719 ms
コンパイル使用メモリ 272,196 KB
実行使用メモリ 89,268 KB
最終ジャッジ日時 2024-09-20 08:09:09
合計ジャッジ時間 18,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 587 ms
89,268 KB
testcase_04 AC 556 ms
58,044 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 501 ms
62,636 KB
testcase_07 AC 626 ms
76,816 KB
testcase_08 AC 718 ms
76,732 KB
testcase_09 AC 580 ms
62,740 KB
testcase_10 AC 600 ms
57,912 KB
testcase_11 AC 575 ms
58,044 KB
testcase_12 AC 581 ms
57,912 KB
testcase_13 AC 522 ms
44,600 KB
testcase_14 AC 493 ms
31,796 KB
testcase_15 AC 723 ms
63,672 KB
testcase_16 AC 503 ms
46,648 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 590 ms
67,256 KB
testcase_19 AC 706 ms
63,932 KB
testcase_20 AC 581 ms
58,044 KB
testcase_21 AC 507 ms
33,980 KB
testcase_22 AC 514 ms
33,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001


int main() {
    
	int n;
	cin>>n;
	vector<long long> a(n),x(n);
	rep(i,n)cin>>x[i];
	rep(i,n)cin>>a[i];
	
	vector<long long> t = x;
	rep(i,n){
		t.push_back(x[i]+a[i]);
		t.push_back(x[i]-a[i]);
	}
	
	sort(t.begin(),t.end());
	t.erase(unique(t.begin(),t.end()),t.end());
	
	scc_graph S(t.size());
	
	vector<vector<int>> E(t.size());
	rep(i,n){
		int d0 = distance(t.begin(),lower_bound(t.begin(),t.end(),x[i]));
		int d1 = distance(t.begin(),lower_bound(t.begin(),t.end(),x[i]+a[i]));
		E[d0].push_back(d1);
		S.add_edge(d0,d1);
		d1 = distance(t.begin(),lower_bound(t.begin(),t.end(),x[i]-a[i]));
		E[d0].push_back(d1);
		S.add_edge(d0,d1);
	}
	
	auto s = S.scc();
	
	vector<int> pos(t.size());
	rep(i,s.size()){
		rep(j,s[i].size())pos[s[i][j]] = i;
	}
	
	vector<long long> dp(t.size(),-Inf);
	for(int i=s.size()-1;i>=0;i--){
		long long m = -Inf;
		rep(j,s[i].size()){
			m = max(m,t[s[i][j]]);
			rep(k,E[s[i][j]].size())m = max(m,dp[E[s[i][j]][k]]);
		}
		rep(j,s[i].size()){
			dp[s[i][j]] = m;
		}
	}
	rep(i,n){
		int d0 = distance(t.begin(),lower_bound(t.begin(),t.end(),x[i]));
		cout<<dp[d0] - x[i]<<endl;
	}
	
    return 0;
}
0