結果

問題 No.2196 Pair Bonus
ユーザー mushilymushily
提出日時 2023-03-16 10:31:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 64,128 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-18 09:16:30
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 244 ms
8,192 KB
testcase_04 AC 246 ms
8,064 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 41 ms
5,376 KB
testcase_09 AC 226 ms
7,808 KB
testcase_10 AC 146 ms
6,272 KB
testcase_11 AC 54 ms
5,376 KB
testcase_12 AC 191 ms
7,040 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 198 ms
7,680 KB
testcase_17 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
int main()
{
    long long s = 0, t1, t2;
    long a[200000];
    long b[200000];
    long x[100000];
    long y[100000];
    int n, i, q, h;

    cin >> n;
    for (i = 0; i < (n << 1); i++)
    {
        cin >> a[i];
    }
    for (i = 0; i < (n << 1); i++)
    {
        cin >> b[i];
    }
    for (i = 0; i < n; i++)
    {
        cin >> x[i];
    }
    for (i = 0; i < n; i++)
    {
        cin >> y[i];
    }
    for (i = 0; i < n; i++)
    {
        q = i << 1;
        h = q + 1;
        t1 = a[q] + a[h] + x[i];
        t2 = a[q] + b[h] + y[i];
        if (t1 < t2)
            t1 = t2;
        t2 = b[q] + a[h] + y[i];
        if (t1 < t2)
            t1 = t2;
        t2 = b[q] + b[h] + x[i];
        if (t1 < t2)
            t1 = t2;
        s += t1;
    }
    cout << s << endl;
}
0