結果
問題 | No.43 野球の試合 |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2014-10-19 17:09:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 14 ms / 5,000 ms |
コード長 | 2,245 bytes |
コンパイル時間 | 1,453 ms |
コンパイル使用メモリ | 102,412 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 16:22:04 |
合計ジャッジ時間 | 1,604 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 14 ms
6,940 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 <algorithm> #include <cfloat> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <functional> #include <iostream> #include <map> #include <memory> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; #define sz size() #define pb push_back #define mp make_pair #define fi first #define se second #define all(c) (c).begin(), (c).end() #define rep(i,a,b) for(int i=(a);i<(b);++i) #define clr(a, b) memset((a), (b) ,sizeof(a)) #define MOD 1000000007 int N; int f(int d[10][10]){ int a; int s[10]; clr(s,0); rep(i,0,N){ int c = 0; rep(j,0,N){ if(d[i][j]==1)c++; } s[i]=c; } a=s[0]; set<int> se; rep(i,0,N){ se.insert(s[i]); } vector<int> v(all(se)); sort(all(v),greater<int>()); rep(i,0,v.sz){ if(v[i]==a){ return i+1; } } return 0; } int main(){ cin>>N; vector<string> v; rep(i,0,N){ string s; cin>>s; v.pb(s); } int c = 0; rep(i,0,N){ rep(j,i+1,N){ if(v[i][j] == '-'){ c++; } } } int mn = 1000; rep(b,0,(1<<c)){ int a = 0; int d[10][10]; clr(d,-1); rep(i,0,N){ rep(j,i+1,N){ if(v[i][j]=='o'){ d[i][j] = 1; d[j][i] = 0; } else if(v[i][j]=='x'){ d[i][j] = 0; d[j][i] = 1; } else if(v[i][j]=='-'){ if(((b>>a)&1)==1){ d[i][j] = 1; d[j][i] = 0; } else{ d[i][j] = 0; d[j][i] = 1; } a++; } } } mn = min(mn,f(d)); } cout << mn << endl; return 0; } /* -のところをoかxで埋める全探索をビットでやります。 順位判定は何勝すると何位なのかという表を作って、 0番目の勝数が何位なのかを調べます。 0番目のチームは常に勝つほうが有利というわけではなく, test5.txtは負けたほうが順位が上がるようにできています。 */