結果
問題 | No.967 引き算をして門松列(その2) |
ユーザー | recososo |
提出日時 | 2020-01-13 21:25:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 932 bytes |
コンパイル時間 | 1,628 ms |
コンパイル使用メモリ | 177,964 KB |
実行使用メモリ | 563,100 KB |
最終ジャッジ日時 | 2024-06-02 04:32:11 |
合計ジャッジ時間 | 5,029 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,760 KB |
testcase_01 | AC | 1 ms
6,812 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; map<pair<ll,pair<ll,ll>>,ll> mp; ll f(ll a,ll b,ll c){ if(mp[{a,{b,c}}]){ return mp[{a,{b,c}}]; } ll res; if(a<1||b<1||c<1){ res=1e18; } else if(a==b||b==c||c==a){ res=min({f(a-1,b,c)+x,f(a,b-1,c)+y,f(a,b,c-1)+z}); } else if(min({a,b,c})==b||max({a,b,c})==b){ res=0; } else{ if(a<c){ res=min({f(a,a,c)+(b-a)*y,f(a,b,b)+(c-b)*z,f(a,b,a)+(c-a)*z}); } else{ res=min({f(b,b,c)+(a-b)*x,f(c,b,c)*(a-c)*x,f(a,c,c)+(b-c)*y}); } } return mp[{a,{b,c}}]=res; } 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; } } }