結果

問題 No.43 野球の試合
ユーザー KKT89KKT89
提出日時 2020-07-17 02:23:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,557 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 113,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 20:11:52
合計ジャッジ時間 1,643 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

char fi[6][6];
char pi[6][6];

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    for(int i=0;i<n;i++){
        for(int j=0;j<n;j++){
            cin >> fi[i][j];
        }
    }
    int res=n;
    int m=n*(n-1)/2;
    for(int i=0;i<(1<<m);i++){
        bool ok=1;
        int id=0;
        for(int j=0;j<n;j++){
            for(int k=0;k<j;k++){
                if((1<<id)&i){
                    pi[j][k]='o';
                    pi[k][j]='x';
                    if(fi[j][k]=='o'||fi[j][k]=='-'){}
                    else ok=0;    
                }
                else{
                    pi[j][k]='x';
                    pi[k][j]='o';
                    if(fi[j][k]=='x'||fi[j][k]=='-'){}
                    else ok=0;
                }
                id++;
            }
        }
        if(ok){
            vector<int> win;
            for(int j=0;j<n;j++){
                int cnt=0;
                for(int k=0;k<n;k++){
                    if(pi[j][k]=='o')cnt++;
                }
                win.push_back(cnt);
            }
            int ju=1;
            for(auto p:win){
                if(p>win[0])ju++;
            }
            res=min(res,ju);
        }
    }
    printf("%d\n",res );
}
0