結果

問題 No.43 野球の試合
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-04 19:07:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,331 bytes
コンパイル時間 3,149 ms
コンパイル使用メモリ 253,772 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 19:07:50
合計ジャッジ時間 3,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(long long i = 0; i < n; i++)
#define ALL(v) (v).begin(), (v).end()
using namespace std;

using lint = long long;

int main() {
    int n;
    cin >> n;
    vector<vector<char>> s(n, vector<char>(n));
    rep(i, n) {
        rep(j, n) {
            cin >> s[i][j];
        }
    }
    rep(j, n) {
        if (s[0][j] == '-') {
            s[0][j] = 'o';
            s[j][0] = 'x';
        }
    }
    vector<int> cnt(n, 0);
    rep(i, n) {
        rep(j, n) {
            if (s[i][j] == 'o') {
                cnt[i]++;
            }
        }
    }
    rep(i, n) {
        rep(j, n) {
            if (s[i][j] == '-') {
                if (cnt[i] <= cnt[j]) {
                    s[i][j] = 'o';
                    s[j][i] = 'x';
                    cnt[i]++;
                } else {
                    s[i][j] = 'x';
                    s[j][i] = 'o';
                    cnt[j]++;
                }
            }
        }
    }
    vector<vector<int>> v(100);
    rep(i, n) {
        v[cnt[i]].emplace_back(i);
    }
    int ans = 1;
    for (int i = 99; i >= 0; i--) {
        for (auto x : v[i]) {
            if (x == 0) {
                cout << ans << endl;
                return 0;
            }
        }
        if (v[i].size() > 0) {
            ans++;
        }
    }
}
0