結果
問題 | No.43 野球の試合 |
ユーザー | kotatsugame |
提出日時 | 2017-10-09 23:09:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 773 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 68,224 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 07:08:21 |
合計ジャッジ時間 | 1,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 4 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp:43:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 43 | main() | ^~~~ main.cpp: In function 'int dfs(int)': main.cpp:42:1: warning: control reaches end of non-void function [-Wreturn-type] 42 | } | ^
ソースコード
#include<iostream> #include<algorithm> using namespace std; string s[7];int n; int dfs(int t) { if(t) { int ret=1e9; for(int i=0;i<n;i++) { for(int j=i;j<n;j++) { if(s[i][j]=='-') { s[i][j]='o';s[j][i]='x';ret=min(ret,dfs(t-1)); s[i][j]='x';s[j][i]='o';ret=min(ret,dfs(t-1)); s[i][j]=s[j][i]='-'; return ret; } } } return ret; } else { int c[7]={}; for(int i=0;i<n;i++)for(int j=0;j<n;j++)c[i]+=s[i][j]=='o'; int ret=0; for(int i=n;i--;) { for(int j=0;j<n;j++) { if(c[j]==i){ret++;break;} } if(c[0]==i) { return ret; } } } } main() { cin>>n;for(int i=0;i<n;i++)cin>>s[i]; int cnt=0; for(int i=0;i<n;i++) { for(int j=i;j<n;j++)cnt+=s[i][j]=='-'; } cout<<dfs(cnt)<<endl; }