結果

問題 No.967 引き算をして門松列(その2)
ユーザー outlineoutline
提出日時 2020-12-23 20:04:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 1,698 bytes
コンパイル時間 1,300 ms
コンパイル使用メモリ 130,556 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 15:16:36
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge13 / judge9
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 3 ms
4,348 KB
testcase_05 AC 4 ms
4,348 KB
testcase_06 AC 4 ms
4,348 KB
testcase_07 AC 4 ms
4,348 KB
testcase_08 AC 6 ms
4,348 KB
testcase_09 AC 7 ms
4,348 KB
testcase_10 AC 8 ms
4,348 KB
testcase_11 AC 7 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
// constexpr int mod = 1000000007;
constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

constexpr ll inf = 4e+18;

ll func(ll a, ll b, ll c, ll x, ll y, ll z){
    ll res = 0;
    if(b >= c){
        res += (b - (c - 1)) * y;
        b = c - 1;
    }
    if(a >= b){
        res += (a - (b - 1)) * x;
        a = b - 1;
    }
    return a > 0 ? res : inf;
}

void solve(){
    ll A, B, C, X, Y, Z;
    cin >> A >> B >> C >> X >> Y >> Z;

    ll ans = inf;
    
    // (B, A, C)
    chmin(ans, func(B, A, C, Y, X, Z));

    // (B, C, A)
    chmin(ans, func(B, C, A, Y, Z, X));

    // (A, C, B)
    chmin(ans, func(A, C, B, X, Z, Y));

    // (C, A, B)
    chmin(ans, func(C, A, B, Z, X, Y));

    if(ans == inf)  ans = -1;
    cout << ans << '\n';
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int T;
    cin >> T;
    while(T--)  solve();

    return 0;
}
0