結果

問題 No.1122 Plane Tickets
ユーザー fastmathfastmath
提出日時 2020-07-22 21:49:48
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,562 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 135,384 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-04 17:39:55
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
4,376 KB
testcase_01 AC 6 ms
4,376 KB
testcase_02 AC 6 ms
4,376 KB
testcase_03 AC 6 ms
4,376 KB
testcase_04 AC 6 ms
4,376 KB
testcase_05 AC 6 ms
4,380 KB
testcase_06 AC 6 ms
4,376 KB
testcase_07 AC 6 ms
4,376 KB
testcase_08 AC 6 ms
4,376 KB
testcase_09 AC 6 ms
4,376 KB
testcase_10 AC 6 ms
4,380 KB
testcase_11 AC 6 ms
4,384 KB
testcase_12 AC 6 ms
4,376 KB
testcase_13 AC 6 ms
4,376 KB
testcase_14 AC 6 ms
4,376 KB
testcase_15 AC 6 ms
4,376 KB
testcase_16 AC 6 ms
4,380 KB
testcase_17 AC 6 ms
4,380 KB
testcase_18 AC 6 ms
4,376 KB
testcase_19 AC 6 ms
4,380 KB
testcase_20 AC 7 ms
4,376 KB
testcase_21 AC 6 ms
4,376 KB
testcase_22 AC 6 ms
4,380 KB
testcase_23 AC 6 ms
4,376 KB
testcase_24 WA -
testcase_25 AC 6 ms
4,376 KB
testcase_26 AC 6 ms
4,376 KB
testcase_27 AC 6 ms
4,376 KB
testcase_28 WA -
testcase_29 AC 6 ms
4,376 KB
testcase_30 AC 6 ms
4,380 KB
testcase_31 AC 6 ms
4,380 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 6 ms
4,380 KB
testcase_35 AC 6 ms
4,376 KB
testcase_36 AC 6 ms
4,380 KB
testcase_37 AC 6 ms
4,376 KB
testcase_38 AC 6 ms
4,376 KB
testcase_39 AC 6 ms
4,380 KB
testcase_40 AC 6 ms
4,380 KB
testcase_41 AC 6 ms
4,376 KB
testcase_42 AC 6 ms
4,380 KB
testcase_43 AC 6 ms
4,376 KB
testcase_44 AC 8 ms
4,376 KB
testcase_45 AC 6 ms
4,376 KB
testcase_46 AC 7 ms
4,380 KB
testcase_47 AC 7 ms
4,376 KB
testcase_48 AC 7 ms
4,376 KB
testcase_49 WA -
testcase_50 AC 46 ms
4,380 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';

vector <int> c;

const int N = 5;
int a[N];

void gen(int i, int sum) {
    if (i == 5) {
        if (sum >= 0) {
            c.app(sum);
        }
        return;
    }   

    for (int f = -1; f <= 1; ++f) {
        gen(i + 1, sum + a[i] * f);
    }   
}

int b[N];

signed main() {
    #ifdef HOME
    freopen("input.txt", "r", stdin);
    #else
    #define endl '\n'
    ios_base::sync_with_stdio(0); cin.tie(0);
    #endif

    for (int i = 0; i < 5; ++i)
        cin >> a[i];

    gen(0, 0);
    
    /*
    for (auto e : c)
        cout << e << ' ';
    cout << endl;
    */

    int ans = 0;
    for (int x : c) {
        for (int y : c) {
            for (int z : c) {

                b[0] = a[0] - x;
                b[1] = a[1] - x - y;
                b[2] = a[2] - x - y - z;
                b[3] = a[3] - y - z;
                b[4] = a[4] - z;

                int mn = 0;
                for (int i = 0; i < N; ++i)
                    mn = min(mn, b[i]);
                if (mn < 0)
                    continue;

                int add = min(b[3] + b[1], min(b[0], b[4]));
                ans = max(ans, x + y + z + add);

            }
        }   
    }   
    cout << ans << endl;
}
0