結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | trineutron |
提出日時 | 2020-01-13 21:59:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 1,326 ms |
コンパイル使用メモリ | 166,424 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 06:27:49 |
合計ジャッジ時間 | 2,006 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int64_t solve(int64_t a, int64_t b, int64_t c, int64_t x, int64_t y, int64_t z) { int64_t ans = 0; if (a > c) { swap(a, c); swap(x, z); } if (a == c) { if (x > z) swap(x, z); a--; ans += x; } if (a == 0) return -1; if (a > b || b > c) return ans; if (a == 1) { if (b <= 2) { return -1; } else { return ans + (c - b + 1) * z; } } if (c - a == 1) { int64_t aminus = x + solve(a - 1, b, c, x, y, z); if (aminus == -1) return ans + (b - a + 1) * y; return ans + min((b - a + 1) * y, aminus); } return ans + min((b - a + 1) * y, (c - b + 1) * z); } int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int64_t a, b, c, x, y, z; cin >> a >> b >> c >> x >> y >> z; cout << solve(a, b, c, x, y, z) << endl; } }