結果
問題 | No.43 野球の試合 |
ユーザー | kotatsugame |
提出日時 | 2017-10-09 23:01:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 715 bytes |
コンパイル時間 | 806 ms |
コンパイル使用メモリ | 69,064 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 07:08:07 |
合計ジャッジ時間 | 1,186 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
コンパイルメッセージ
main.cpp:38:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 38 | main() | ^~~~ main.cpp: In function 'int dfs(int)': main.cpp:37:1: warning: control reaches end of non-void function [-Wreturn-type] 37 | } | ^
ソースコード
#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)); } } } 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; }