結果

問題 No.967 引き算をして門松列(その2)
ユーザー drken1215drken1215
提出日時 2020-01-13 21:29:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,279 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 81,504 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-24 15:10:30
合計ジャッジ時間 1,695 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 20 ms
4,380 KB
testcase_04 AC 22 ms
4,376 KB
testcase_05 AC 21 ms
4,376 KB
testcase_06 AC 22 ms
4,376 KB
testcase_07 AC 24 ms
4,380 KB
testcase_08 AC 42 ms
4,380 KB
testcase_09 AC 52 ms
4,376 KB
testcase_10 AC 53 ms
4,376 KB
testcase_11 AC 60 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
                if (isok(a, b, c)) {
                    res = min(res, (A - a) * X + (B - b) * Y + (C - c) * Z);
                }
            }
        }
    }
    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;
    }
}
0