結果
問題 |
No.1122 Plane Tickets
|
ユーザー |
![]() |
提出日時 | 2020-07-22 21:52:28 |
言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,562 bytes |
コンパイル時間 | 2,233 ms |
コンパイル使用メモリ | 164,772 KB |
実行使用メモリ | 10,020 KB |
最終ジャッジ日時 | 2024-06-22 15:51:54 |
合計ジャッジ時間 | 7,440 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 43 WA * 5 TLE * 1 -- * 6 |
ソースコード
#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 <= 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; }