結果
問題 | No.43 野球の試合 |
ユーザー |
![]() |
提出日時 | 2016-02-25 16:19:19 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,281 bytes |
コンパイル時間 | 600 ms |
コンパイル使用メモリ | 67,928 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 13:42:07 |
合計ジャッジ時間 | 1,129 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 6 WA * 1 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>using namespace std;#define RREP(i,s,e) for (i = e-1; i >= s; i--)#define rrep(i,n) RREP(i,0,n)#define REP(i,s,e) for (i = s; i < e; i++)#define rep(i,n) REP(i,0,n)#define INF 1e8typedef long long ll;int N;int dfs(vector<int> win, vector<string> s, int x, int y) {int nx = x + (y+1) / N;int ny = (y+1) % N;if (x == N) {int i, rank = 1;bool used[6] {};REP (i,1,N) {if (!used[win[i]] && win[0] < win[i])rank++;used[win[i]] = true;}return rank;}if (s[x][y] == '-') {int rank;win[x]++;s[x][y] = 'o';s[y][x] = 'x';rank = dfs(win,s,nx,ny);win[x]--;s[x][y] = 'x';s[y][x] = 'o';return min(rank,dfs(win,s,nx,ny));}else if (s[x][y] == 'o')win[x]++;return dfs(win,s,nx,ny);}int main() {int i, j;vector<int> win(6);vector<string> s(6);cin >> N;rep (i,N) cin >> s[i];rep (j,N) {if (s[0][j] == '-' || s[0][j] == 'o') {s[j][0] = 'x';s[0][j] = 'o';win[0]++;}}cout << dfs(win,s,1,0) << endl;return 0;}