結果
問題 | No.909 たぴの配置 |
ユーザー | kya_ski |
提出日時 | 2019-11-29 12:55:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 388 ms / 3,000 ms |
コード長 | 815 bytes |
コンパイル時間 | 1,845 ms |
コンパイル使用メモリ | 170,108 KB |
実行使用メモリ | 5,760 KB |
最終ジャッジ日時 | 2024-11-20 21:18:15 |
合計ジャッジ時間 | 8,777 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 370 ms
5,504 KB |
testcase_06 | AC | 380 ms
5,760 KB |
testcase_07 | AC | 354 ms
5,504 KB |
testcase_08 | AC | 372 ms
5,504 KB |
testcase_09 | AC | 388 ms
5,632 KB |
testcase_10 | AC | 360 ms
5,376 KB |
testcase_11 | AC | 351 ms
5,376 KB |
testcase_12 | AC | 366 ms
5,632 KB |
testcase_13 | AC | 375 ms
5,760 KB |
testcase_14 | AC | 353 ms
5,376 KB |
testcase_15 | AC | 357 ms
5,504 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename T> inline bool chmax(T& a,T b) { if (a < b) { a = b; return true; } return false; } template<typename T> inline bool chmin(T& a,T b) { if (a > b) { a = b; return true; } return false; } const int INF = 1e9; int main() { int N; cin >> N; vector<int> A(N); for (int &a : A) cin >> a; vector<int> B(N); for (int &b : B) cin >> b; int M = INF, h = -1; for (int i = 0; i < N; i++) { if (chmin(M, A[i]+B[i])) h = i; } vector<int> ans(N, 0); for (int i = 0; i < N; i++) { if (A[i] < M) { ans[i] = A[i]; } else if (B[i] < M) { ans[i] = M-B[i]; } } cout << M << endl << 0 << endl; for (auto a : ans) cout << a << endl; cout << M << endl; return 0; }