結果
問題 | No.43 野球の試合 |
ユーザー | tetsuzuki1115 |
提出日時 | 2018-01-15 02:56:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,807 bytes |
コンパイル時間 | 853 ms |
コンパイル使用メモリ | 86,684 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 11:53:01 |
合計ジャッジ時間 | 1,250 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int calc()’: main.cpp:42:1: warning: control reaches end of non-void function [-Wreturn-type] 42 | } | ^
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <math.h> #include <cmath> #include <limits.h> #include <map> #include <set> #include <queue> #include <algorithm> #include <functional> #include <stdio.h> using namespace std; long long MOD = 1000000007; int N; int B[6][6]; int calc() { vector<int> V; int s0 = 0; for ( int i = 0; i < N; i++ ) { int s = 0; for ( int j = 0; j < N; j++ ) { if ( !i ) { s0 += B[i][j]; } s += B[i][j]; } V.push_back(s); } sort( V.begin(), V.end(), greater<int>() ); int cnt = 1; for ( int i = 0; i < V.size(); i++ ) { if ( i && V[i] != V[i-1] ) { cnt++; } if ( s0 == V[i] ) { return cnt; } } } int func() { for ( int i = 1; i < N-1; i++ ) { for ( int j = i+1; j < N; j++ ) { if ( B[i][j] == 0 ) { B[i][j] = 1; B[j][i] = -1; int s1 = func(); B[i][j] = -1; B[j][i] = 1; int s2 = func(); B[i][j] = 0; B[j][i] = 0; return min( s1, s2 ); } } } return calc(); } int main() { cin >> N; for ( int i = 0; i < N; i++ ) { for ( int j = 0; j < N; j++ ) { B[i][j] = 0; } } for ( int i = 0; i < N; i++ ) { string s; cin >> s; for ( int j = 0; j < N; j++ ) { if ( s[j] == 'o' ) { B[i][j] = 1; } else if ( s[j] == 'x' ) { B[i][j] = -1; } } } for ( int j = 1; j < N; j++ ) { if ( B[0][j] == 0 ) { B[0][j] = 1; B[j][0] = -1; } } cout << func() << endl; return 0; }