結果

問題 No.909 たぴの配置
ユーザー satashunsatashun
提出日時 2019-10-18 21:34:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 367 ms / 3,000 ms
コード長 1,333 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 167,780 KB
実行使用メモリ 5,576 KB
最終ジャッジ日時 2023-09-07 21:31:53
合計ジャッジ時間 7,587 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 357 ms
5,508 KB
testcase_06 AC 367 ms
5,392 KB
testcase_07 AC 332 ms
5,128 KB
testcase_08 AC 343 ms
5,500 KB
testcase_09 AC 343 ms
5,576 KB
testcase_10 AC 317 ms
5,456 KB
testcase_11 AC 319 ms
5,172 KB
testcase_12 AC 339 ms
5,444 KB
testcase_13 AC 357 ms
5,392 KB
testcase_14 AC 323 ms
5,128 KB
testcase_15 AC 330 ms
5,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef pair<int, int> pii;
typedef long long ll;
template<class T> using V = vector<T>;
template<class T> using VV = V<V<T>>;

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define rep(i,n) rep2(i,0,n)
#define rep2(i,m,n) for(int i=m;i<(n);i++)
#define ALL(c) (c).begin(),(c).end()
#define dump(x) cout << #x << " = " << (x) << endl
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); }

template<class T, class U> void chmin(T& t, const U& u) { if (t > u) t = u; }
template<class T, class U> void chmax(T& t, const U& u) { if (t < u) t = u; }

template<class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
	os<<"("<<p.first<<","<<p.second<<")";
	return os;
}

template<class T>
ostream& operator<<(ostream& os, const vector<T>& v) {
	os<<"{";
	rep(i, v.size()) {
		if (i) os<<",";
		os<<v[i];
	}
	os<<"}";
	return os;
}

int main() {
	int N; cin >> N;
	V<pii> vec(N);
	int mx = TEN(9);
	rep(i, N) {
		cin >> vec[i].fi;
	}
	rep(i, N) {
		cin >> vec[i].se;
	}
	rep(i, N) {
		chmin(mx, vec[i].fi + vec[i].se);
	}
	cout << mx << endl;
	V<int> pos(N + 2);
	pos[N + 1] = mx;
	rep(i, N + 2) {
		if (i > 0 && i < N + 1) {
			pos[i] = max(0, mx - vec[i-1].se);
		}
		cout << pos[i] << endl;
	}
	return 0;
}
0