結果

問題 No.904 サメトロ
ユーザー NagisaNagisa
提出日時 2019-10-12 02:25:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 609 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 178,388 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 18:05:52
合計ジャッジ時間 6,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 2 ms
5,376 KB
testcase_29 RE -
testcase_30 AC 2 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i = 0; i < (int)(n); ++i)
#define ALL(a)  (a).begin(),(a).end()
typedef long long ll;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    vector<int> A(N+1,0), B(N+1,0);
    cin >> N;
    REP(i,N-1){
        cin >> A[i] >> B[i];
    }
    int s = accumulate(ALL(A), 0);
    int t = accumulate(ALL(B), 0);
    int ma = 0, mb = 0;
    REP(i,N-1){
        ma = max(ma, A[i]+B[i]-s);
        mb = max(mb, A[i]+B[i]-t);
    }
    cout << min(t-ma,s-mb) + 1 << endl;
    return 0;
}
0