結果

問題 No.909 たぴの配置
ユーザー Ogtsn99Ogtsn99
提出日時 2019-10-18 21:38:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 382 ms / 3,000 ms
コード長 1,166 bytes
コンパイル時間 1,515 ms
コンパイル使用メモリ 168,924 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-06-25 15:14:40
合計ジャッジ時間 7,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 0 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 364 ms
6,272 KB
testcase_06 AC 376 ms
6,400 KB
testcase_07 AC 349 ms
6,144 KB
testcase_08 AC 362 ms
6,272 KB
testcase_09 AC 382 ms
6,528 KB
testcase_10 AC 345 ms
6,144 KB
testcase_11 AC 346 ms
6,016 KB
testcase_12 AC 359 ms
6,272 KB
testcase_13 AC 374 ms
6,656 KB
testcase_14 AC 347 ms
6,144 KB
testcase_15 AC 349 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define rrep(i,n) for(int (i)=((n)-1);(i)>=0;(i)--)
#define itn int
#define all(x) (x).begin(),(x).end()
#define F first
#define S second
const long long INF = 1LL << 60;
const int MOD = 1000000007;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }

signed main(void){
    int n; cin>>n;
    vector <int> a(n), b(n);
    rep(i,n) cin>>a[i];
    rep(i,n) cin>>b[i];
    int ma = INF;
    rep(i,n) ma = min(ma, a[i]+ b[i]);
    cout<<ma<<endl;
    for(int i=0;i<n+2;i++){
        if(i==0) cout<<0<<endl;
        else if(i==n+1) cout<<ma<<endl;
        else{
            //cout<<a[i-1]<<' '<<b[i-1]<<endl;
            int mi = min(a[i-1], b[i-1]);
            if(a[i-1] == mi){
                if(a[i-1] > ma) cout<<ma<<endl;
                else cout<<a[i-1]<<endl;
            }else{
                if(ma-mi < 0) cout<<0<<endl;
                else cout<<ma - mi<<endl;
            }
        }
    }
}
0