結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | recososo |
提出日時 | 2020-01-13 21:11:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 806 bytes |
コンパイル時間 | 1,888 ms |
コンパイル使用メモリ | 168,268 KB |
実行使用メモリ | 817,280 KB |
最終ジャッジ日時 | 2024-06-02 04:05:05 |
合計ジャッジ時間 | 4,199 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; ll x,y,z; ll f(int a,int b,int c){ if(a<1||b<1||c<1){ return 1e18; } if(a==b||b==c||c==a){ return min({f(a-1,b,c)+x,f(a,b-1,c)+y,f(a,b,c-1)+z}); } if(min({a,b,c})==b||max({a,b,c})==b){ return 0; } else{ if(a<c){ return min({f(a,a,c)+(b-a)*y,f(a,b,b)+(c-b)*z,f(a,b,a)+(c-a)*z}); } else{ return min({f(b,b,c)+(a-b)*x,f(c,b,c)*(a-c)*x,f(a,c,c)+(b-c)*y}); } } } int main(){ int t;cin >> t; for(int i=0;i<t;i++){ ll a,b,c;cin >> a >> b >> c >> x >> y >> z; ll ans=f(a,b,c); if(ans>=1e18){ cout << -1 << endl; } else{ cout << f(a,b,c) << endl; } } }