結果
問題 | No.968 引き算をして門松列(その3) |
ユーザー | drken1215 |
提出日時 | 2020-01-13 21:41:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 1,361 bytes |
コンパイル時間 | 735 ms |
コンパイル使用メモリ | 82,704 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-02 05:53:26 |
合計ジャッジ時間 | 1,582 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 21 ms
6,944 KB |
testcase_04 | AC | 23 ms
6,944 KB |
testcase_05 | AC | 23 ms
6,940 KB |
testcase_06 | AC | 24 ms
6,940 KB |
testcase_07 | AC | 27 ms
6,944 KB |
testcase_08 | AC | 43 ms
6,940 KB |
testcase_09 | AC | 53 ms
6,944 KB |
testcase_10 | AC | 52 ms
6,944 KB |
testcase_11 | AC | 57 ms
6,944 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <cmath> #include <algorithm> using namespace std; const long long INF = 1LL<<60; // (a, b, c) が門松列かどうか bool isok(long long a, long long b, long long c) { if (a < 1 || b < 1 || c < 1) return false; if (a == b) return false; if (b == c) return false; if (c == a) return false; if (a < b && b < c) return false; if (a > b && b > c) return false; return true; } long long A, B, C, X, Y, Z; long long solve() { long long res = INF; vector<long long> alt; for (int it = 0; it <= 2; ++it) { alt.push_back(A + it); alt.push_back(B + it); alt.push_back(C + it); } for (auto a : alt) { for (auto b : alt) { for (auto c : alt) { if (A > a) continue; if (B > b) continue; if (C > c) continue; long long sum = (a-A) + (b-B) + (c-C); // 操作回数 if (isok(a-sum, b-sum, c-sum)) { res = min(res, (a-A) * Y + (b-B) * Z + (c-C) * X); } } } } if (res < INF) return res; else return -1; } int main() { int T; cin >> T; for (int _ = 0; _ < T; ++_) { cin >> A >> B >> C >> X >> Y >> Z; cout << solve() << endl; } }