結果

問題 No.909 たぴの配置
ユーザー KKT89KKT89
提出日時 2019-10-18 21:39:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 602 bytes
コンパイル時間 682 ms
コンパイル使用メモリ 78,968 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-06-25 15:15:36
合計ジャッジ時間 6,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <stack>
using namespace std;
typedef long long int ll;

int tapi[210010];

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n; cin >> n;
	vector<int> x(n),y(n);
	for(int i=0;i<n;i++){
		cin >> x[i];
	}
	for(int i=0;i<n;i++){
		cin >> y[i];
	}
	tapi[0]=0;
	for(int i=0;i<n;i++){
		tapi[i+1]=x[i];
	}
	int tapu=1e9;
	for(int i=0;i<n;i++){
		tapu=min(tapi[i+1]+y[i],tapu);
	}
	cout << tapu << endl;
	for(int i=0;i<=n;i++){
		cout << min(tapi[i],tapu) << endl;
	}
	cout << tapu << endl;
}
0