結果
| 問題 |
No.965 門松列が嫌い
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-01-14 05:05:47 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 1,000 ms |
| コード長 | 1,392 bytes |
| コンパイル時間 | 2,025 ms |
| コンパイル使用メモリ | 193,924 KB |
| 最終ジャッジ日時 | 2025-01-08 17:53:47 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
const long long INF = LLONG_MAX;
signed main() {
ios::sync_with_stdio(false); cin.tie(0);
auto is_valid = [] (long long g[], long long h[]) -> bool {
// if (h[0] < g[0] || h[1] < g[1] || h[2] < g[2]) return false;
// if (g[0] <= 0 || g[1] <= 0 || g[2] <= 0) return false;
if (g[0] == g[1] || g[1] == g[2] || g[2] == g[0]) return false;
if (g[1] > g[0] && g[1] > g[2]) return true;
if (g[1] < g[0] && g[1] < g[2]) return true;
return false;
};
auto solve = [&] () -> long long {
long long h[3];
cin >> h[0] >> h[1] >> h[2];
long long c[3];
// cin >> c[0] >> c[1] >> c[2];
c[0] = c[1] = c[2] = 1;
long long t[] = {h[0], h[0] - 1, h[0] - 2, h[1], h[1] - 1, h[1] - 2, h[2], h[2] - 1, h[2] - 2};
long long g[3];
long long res = INF;
for (int i = 0; i < 9; i++) for (int j = 0; j < 9; j++) for (int k = 0; k < 9; k++) {
g[0] = t[i], g[1] = t[j], g[2] = t[k];
if (h[0] < g[0] || h[1] < g[1] || h[2] < g[2]) continue;
if (g[0] <= 0 || g[1] <= 0 || g[2] <= 0) continue;
if (!is_valid(g, h)) res = min(res, c[0] * (h[0] - g[0]) + c[1] * (h[1] - g[1]) + c[2] * (h[2] - g[2]));
}
return (res == INF ? -1 : res);
};
cout << solve () << '\n';
return 0;
int t;
cin >> t;
while (t--) cout << solve() << '\n';
return 0;
}