結果

問題 No.1122 Plane Tickets
ユーザー fastmathfastmath
提出日時 2020-07-22 21:51:53
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,562 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 132,060 KB
実行使用メモリ 12,084 KB
最終ジャッジ日時 2023-09-04 17:50:53
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 = -2; f <= 2; ++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