結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | recososo |
提出日時 | 2020-01-13 20:54:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,059 bytes |
コンパイル時間 | 1,704 ms |
コンパイル使用メモリ | 167,308 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 17:08:06 |
合計ジャッジ時間 | 2,282 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 17 ms
5,248 KB |
testcase_05 | AC | 23 ms
5,248 KB |
testcase_06 | AC | 27 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int f(int a,int b,int c){ if(a<1||b<1||c<1){ return 1e9; } if(a==b&&b==c){ return f(a-1,b,c-2)+3; } if(a==b){ if(a<c){ return f(a,b-1,c)+1; } else{ return f(a-1,b,c)+1; } } if(b==c){ if(a>c){ return f(a,b-1,c)+1; } else{ return f(a,b,c-1)+1; } } if(a==c){ if(a<b){ return f(a-1,b,c)+1; } else{ return f(a-1,b,c)+1; } } if(min({a,b,c})==b||max({a,b,c})==b){ return 0; } else{ if(a<c){ return min(b-a+f(a,a,c),c-b+f(a,b,b)); } else{ return min(a-b+f(b,b,c),b-c+f(a,c,c)); } } } int main(){ int t;cin >> t; for(int i=0;i<t;i++){ int a,b,c;cin >> a >> b >> c; if(f(a,b,c)>=1e9){ cout << -1 << endl; } else{ cout << f(a,b,c) << endl; } } }