結果

問題 No.2196 Pair Bonus
ユーザー i_am_noobi_am_noob
提出日時 2023-02-15 18:59:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 201,444 KB
実行使用メモリ 9,376 KB
最終ジャッジ日時 2024-07-18 03:03:26
合計ジャッジ時間 3,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,648 KB
testcase_01 AC 2 ms
7,652 KB
testcase_02 AC 2 ms
7,520 KB
testcase_03 AC 66 ms
9,020 KB
testcase_04 AC 65 ms
8,800 KB
testcase_05 AC 3 ms
7,656 KB
testcase_06 AC 3 ms
7,656 KB
testcase_07 AC 3 ms
7,528 KB
testcase_08 AC 12 ms
7,908 KB
testcase_09 AC 62 ms
8,840 KB
testcase_10 AC 39 ms
8,832 KB
testcase_11 AC 16 ms
7,652 KB
testcase_12 AC 50 ms
8,672 KB
testcase_13 AC 2 ms
7,648 KB
testcase_14 AC 7 ms
7,648 KB
testcase_15 AC 2 ms
7,520 KB
testcase_16 AC 53 ms
9,376 KB
testcase_17 AC 4 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int maxn=200005;
int n;
ll a[maxn],b[maxn],c[maxn],d[maxn];

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    cin >> n;
    for(int i=0; i<n*2; ++i) cin >> a[i];
    for(int i=0; i<n*2; ++i) cin >> b[i];
    for(int i=0; i<n; ++i) cin >> c[i];
    for(int i=0; i<n; ++i) cin >> d[i];
    ll res=0;
    for(int i=0; i<n; ++i){
        ll maxx=-1;
        for(int j1: {0,1}) for(int j2: {0,1}) maxx=max(maxx,(j1?b[i*2]:a[i*2])+(j2?b[i*2+1]:a[i*2+1])+(j1==j2?c[i]:d[i]));
        res+=maxx;
    }
    cout << res << "\n";
}
0