結果
| 問題 | No.43 野球の試合 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-10-07 12:39:39 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 12 ms / 5,000 ms | 
| コード長 | 910 bytes | 
| コンパイル時間 | 2,442 ms | 
| コンパイル使用メモリ | 204,696 KB | 
| 最終ジャッジ日時 | 2025-02-07 22:35:15 | 
| ジャッジサーバーID (参考情報) | judge2 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 7 | 
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;
int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<string> S(N);
    rep(i,N) cin >> S[i];
    vector<pair<int,int>> P;
    rep(j,N)rep(i,j) if(S[i][j] == '-') P.push_back({i, j});
    
    int K = P.size();
    int Ans = N;
    rep(T,1<<K) {
        rep(i,K) {
            auto [x, y] = P[i];
            S[x][y] = (T & (1 << i) ? 'o' : 'x');
            S[y][x] = (S[x][y] ^ 'o' ^ 'x');
        }
        vector<int> cnt(N, 0);
        rep(i,N)rep(j,N)if(i != j) cnt[i] += (S[i][j] == 'o');
        set<int> st(cnt.begin(), cnt.end());
        int rank = 1;
        for(auto it = st.rbegin(); it != st.rend(); it++) {
            if(*it == cnt[0]) break;
            rank++;
        }
        Ans = min(Ans, rank);
    }
    cout << Ans << endl;
}
            
            
            
        