結果
問題 | No.1122 Plane Tickets |
ユーザー | fastmath |
提出日時 | 2020-07-22 21:49:48 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,562 bytes |
コンパイル時間 | 3,801 ms |
コンパイル使用メモリ | 163,860 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 15:38:46 |
合計ジャッジ時間 | 5,379 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,816 KB |
testcase_01 | AC | 6 ms
6,812 KB |
testcase_02 | AC | 6 ms
6,944 KB |
testcase_03 | AC | 6 ms
6,940 KB |
testcase_04 | AC | 5 ms
6,940 KB |
testcase_05 | AC | 5 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 5 ms
6,944 KB |
testcase_09 | AC | 5 ms
6,944 KB |
testcase_10 | AC | 5 ms
6,944 KB |
testcase_11 | AC | 5 ms
6,944 KB |
testcase_12 | AC | 5 ms
6,944 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 5 ms
6,940 KB |
testcase_15 | AC | 5 ms
6,944 KB |
testcase_16 | AC | 5 ms
6,944 KB |
testcase_17 | AC | 5 ms
6,940 KB |
testcase_18 | AC | 5 ms
6,944 KB |
testcase_19 | AC | 5 ms
6,940 KB |
testcase_20 | AC | 6 ms
6,944 KB |
testcase_21 | AC | 5 ms
6,944 KB |
testcase_22 | AC | 5 ms
6,940 KB |
testcase_23 | AC | 5 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | AC | 5 ms
6,940 KB |
testcase_26 | AC | 5 ms
6,944 KB |
testcase_27 | AC | 5 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 4 ms
6,944 KB |
testcase_30 | AC | 5 ms
6,944 KB |
testcase_31 | AC | 5 ms
6,944 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 6 ms
6,944 KB |
testcase_35 | AC | 5 ms
6,944 KB |
testcase_36 | AC | 5 ms
6,944 KB |
testcase_37 | AC | 5 ms
6,944 KB |
testcase_38 | AC | 5 ms
6,944 KB |
testcase_39 | AC | 6 ms
6,940 KB |
testcase_40 | AC | 5 ms
6,944 KB |
testcase_41 | AC | 5 ms
6,940 KB |
testcase_42 | AC | 5 ms
6,944 KB |
testcase_43 | AC | 5 ms
6,944 KB |
testcase_44 | AC | 6 ms
6,940 KB |
testcase_45 | AC | 5 ms
6,944 KB |
testcase_46 | AC | 6 ms
6,944 KB |
testcase_47 | AC | 5 ms
6,944 KB |
testcase_48 | AC | 6 ms
6,940 KB |
testcase_49 | WA | - |
testcase_50 | AC | 39 ms
6,940 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
ソースコード
#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; }