結果
問題 | No.968 引き算をして門松列(その3) |
ユーザー | face4 |
提出日時 | 2020-01-13 21:33:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 488 ms |
コンパイル使用メモリ | 66,576 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-02 05:34:44 |
合計ジャッジ時間 | 1,199 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 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 | - |
ソースコード
// ? #include<iostream> #include<climits> using namespace std; typedef long long ll; bool is(ll x, ll y, ll z){ if(x == y || y == z || z == x || x <= 0 || y <= 0 || z <= 0) return false; return (x-y)*(z-y) > 0; } // 2 1 3 or 3 1 2 void f(ll &ans, ll a, ll b, ll c, ll x, ll y, ll z){ ll step = max(0ll, max(c-(b-1), a-(b-1))); ll tmp = step*z; a -= step, c -= step; if(a == c){ a--, c--, tmp += z; tmp += min(x, y); a--, b--; } if(is(a,b,c)) ans = min(ans, tmp); } // 1 3 2 void g(ll &ans, ll a, ll b, ll c, ll x, ll y, ll z){ ll tmp = 0; if(a <= b){ ll step = b-(a-1); tmp += step*y; b -= step, c -= step; } if(c <= b){ ll step = c-(a-1); tmp += step*x; b -= step, a -= step; } if(a == c){ a--, b--; tmp += min(x, y); } if(is(a,b,c)) ans = min(ans, tmp); } int main(){ ll a, b, c, x, y, z; int t; cin >> t; while(t--){ cin >> a >> b >> c >> x >> y >> z; ll ans = LLONG_MAX; f(ans,a,b,c,x,y,z); g(ans,a,b,c,x,y,z); cout << (ans == LLONG_MAX ? -1 : ans) << endl; } return 0; }