結果

問題 No.909 たぴの配置
ユーザー kya_skikya_ski
提出日時 2019-11-29 12:55:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 354 ms / 3,000 ms
コード長 815 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 169,360 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 22:51:43
合計ジャッジ時間 8,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 331 ms
6,940 KB
testcase_06 AC 345 ms
6,940 KB
testcase_07 AC 319 ms
6,940 KB
testcase_08 AC 343 ms
6,940 KB
testcase_09 AC 354 ms
6,940 KB
testcase_10 AC 327 ms
6,940 KB
testcase_11 AC 331 ms
6,944 KB
testcase_12 AC 343 ms
6,940 KB
testcase_13 AC 350 ms
6,940 KB
testcase_14 AC 323 ms
6,940 KB
testcase_15 AC 339 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0