結果

問題 No.43 野球の試合
ユーザー rogi52rogi52
提出日時 2022-10-07 12:39:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 910 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 209,668 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-02 13:28:39
合計ジャッジ時間 2,912 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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