結果

問題 No.909 たぴの配置
ユーザー kya_ski
提出日時 2019-11-29 12:55:27
言語 C++14
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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