結果
問題 | No.43 野球の試合 |
ユーザー | RCCW |
提出日時 | 2017-02-14 20:07:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,036 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 84,004 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 12:07:48 |
合計ジャッジ時間 | 996 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
ソースコード
#include<iostream> #include<sstream> #include<cstdio> #include<cstring> #include<string> #include<vector> #include<list> #include<queue> #include<stack> #include<utility> #include <fstream> #include<set> #include<map> #include<cctype> #include<cmath> #include<algorithm> #include <numeric> using namespace std; #define RALL(x) (x).rbegin(),(x).rend() #define ALL(x) (x).begin(),(x).end() #define repp(i,n) for(int (i)=1;(i)<=(n);(i)++) #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define clr(a) memset((a), 0 ,Nof(a)) #define found(s,e) ((s).find(e)!=(s).end()) typedef pair<int,int> P; typedef vector<pair<int,int> > pii; typedef map<string,int> mdi; int res=1000; int n; char s[100][100]; void solve(int a,int b){ int k; int cnt[10],used[10]; if(a==n){//終了条件 for(int i=0;i<n;i++) cnt[i]=0;//初期化 カウントを for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(s[i][j]=='o') cnt[i]++; //oを全部数える } } for(int i=0;i<n+1;i++){ used[i]=0; //usedを全部0にする 初期化.もしusedカウンター使っていたら、順位には関係ないので飛ばしてやる。 } k=1; for(int i=1;i<n;i++){ if(cnt[0]<cnt[i]){//0と1を比較してもし0のほうが小さくて、usedがつかわれていなかったら、kをプラスする if(!used[cnt[i]]) k++; used[cnt[i]]++; } } res=min(res,k);//いままでのresultとの最小値をとって来る。 return;//全部おわればreturnする } if(b==n){//for文の条件を自由にばらすif文とプラス1のDFSになる。DFSの終了条件とreturn 書くと終わる。 solve(a+1,0); return; } if(s[a][b]!='-'){ //for文の条件を自由にばらすとこういう風になる。 solve(a,b+1); return; } s[a][b]='o'; s[b][a]='x'; solve(a,b+1); s[a][b]='x'; s[b][a]='o'; solve(a,b+1); //s[a][b]=s[b][a]='-'; } int main(){ cin >> n; for(int i=0;i<n;i++) cin >> s[i]; solve(0,0); cout << res << endl; return 0; }