結果

問題 No.43 野球の試合
ユーザー rogi52rogi52
提出日時 2022-10-07 12:38:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 910 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 204,828 KB
最終ジャッジ日時 2025-02-07 22:35:06
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#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,N) 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;
}
0