結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | batsumaru |
提出日時 | 2020-01-13 21:22:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,534 bytes |
コンパイル時間 | 1,657 ms |
コンパイル使用メモリ | 174,248 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-02 04:27:08 |
合計ジャッジ時間 | 2,225 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 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 | - |
コンパイルメッセージ
main.cpp: In function 'void solve()': main.cpp:117:54: warning: 'idxmax' may be used uninitialized [-Wmaybe-uninitialized] 117 | cout << min(c[idxmin] * (a[1] - mini + 1), c[idxmax] * (maxi - a[1] + 1)) | ^ main.cpp:52:14: note: 'idxmax' was declared here 52 | ll idxmin, idxmax; | ^~~~~~ main.cpp:117:23: warning: 'idxmin' may be used uninitialized [-Wmaybe-uninitialized] 117 | cout << min(c[idxmin] * (a[1] - mini + 1), c[idxmax] * (maxi - a[1] + 1)) | ^ main.cpp:52:6: note: 'idxmin' was declared here 52 | ll idxmin, idxmax; | ^~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> P; #define DUMP(x) cout << #x << " = " << (x) << endl; #define FOR(i, m, n) for (ll i = m; i < n; i++) #define IFOR(i, m, n) for (ll i = n - 1; i >= m; i--) #define REP(i, n) FOR(i, 0, n) #define IREP(i, n) IFOR(i, 0, n) #define FOREACH(x, a) for (auto&(x) : (a)) #define ALL(v) (v).begin(), (v).end() #define SZ(x) ll(x.size()) void solve() { vector<ll> a(3), c(3); REP(i, 3) { cin >> a[i]; } REP(i, 3) { cin >> c[i]; } ll ans = 1e18; if (a[0] == a[1] && a[1] == a[2]) { // 1 1 1 -> -1 // 2 2 2 -> -1 if (a[0] <= 2) { cout << -1 << endl; return; } // 3 3 3 -> 3 cout << min(c[0] + 2 * c[2], c[2] + 2 * c[0]) << endl; return; } // 両側2つ等しい // 2 1 2 -> -1 // 1 2 1 -> -1 if (a[0] == 1 && a[1] >= 2 && a[2] == 1 || a[0] == 2 && a[1] == 1 && a[2] == 2) { cout << -1 << endl; return; } if (a[0] == a[2]) { if (a[0] == a[1] + 1) { // 4 3 4 -> 2 cout << 2 * min(c[0], c[2]) << endl; return; } // 6 3 6 -> 1 // 3 4 3 -> 1 cout << min(c[0], c[2]) << endl; return; } ll mini = 1e18, maxi = -1; ll idxmin, idxmax; REP(i, 3) { mini = min(mini, a[i]); if (mini == a[i]) { idxmin = i; } maxi = max(maxi, a[i]); if (maxi == a[i]) { idxmax = i; } } // 1 1 6 -> -1 if (a[0] == a[1] && a[0] == 1 || a[1] == a[2] && a[2] == 1) { cout << -1 << endl; return; } // 2 2 1 -> -1 // 1 2 2 -> -1 if (a[1] == 2 && (a[0] == 2 && a[2] == 1 || a[0] == 1 && a[2] == 2)) { cout << -1 << endl; return; } // 3 3 2 -> 2 if (a[0] == a[1] && a[1] - 1 == a[2]) { cout << 2 * min(c[0], c[1]) << endl; return; } // 2 3 3 -> 2 if (a[1] == a[2] && a[1] - 1 == a[0]) { cout << 2 * min(c[2], c[1]) << endl; return; } // 3 3 1 if (a[0] == a[1]) { cout << min(c[0], c[1]) << endl; return; } // 1 3 3 if (a[1] == a[2]) { cout << min(c[1], c[2]) << endl; return; } // 全部異なる // 1 4 3 // 4 2 3 if (a[1] > a[0] && a[1] > a[2] || a[1] < a[0] && a[1] < a[2]) { cout << 0 << endl; return; } if (mini == 1) { if (a[1] == 2) { cout << -1 << endl; return; } cout << c[idxmax] * (maxi - a[1] + 1) << endl; return; } cout << min(c[idxmin] * (a[1] - mini + 1), c[idxmax] * (maxi - a[1] + 1)) << endl; } int main() { ll n; cin >> n; while (n--) solve(); }