結果
問題 |
No.967 引き算をして門松列(その2)
|
ユーザー |
|
提出日時 | 2020-12-23 20:04:59 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 1,698 bytes |
コンパイル時間 | 1,157 ms |
コンパイル使用メモリ | 126,100 KB |
最終ジャッジ日時 | 2025-01-17 06:29:08 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
#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; }