結果

問題 No.709 優勝可能性
ユーザー kimiyukikimiyuki
提出日時 2018-06-29 23:53:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 207,380 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-01 00:27:28
合計ジャッジ時間 7,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 264 ms
8,704 KB
testcase_11 AC 179 ms
8,832 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 299 ms
11,264 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < int(n); ++ (i))
#define REP3(i, m, n) for (int i = (m); (i) < int(n); ++ (i))
using namespace std;
template <typename X, typename T> auto vectors(X x, T a) { return vector<T>(x, a); }
template <typename X, typename Y, typename Z, typename... Zs> auto vectors(X x, Y y, Z z, Zs... zs) { auto cont = vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); }

int main() {
    // input
    int n, m; cin >> n >> m;
    auto r = vectors(n, m, int());
    REP (y, n) REP (x, m) cin >> r[y][x];

    // solve
    vector<int> max_r(m, INT_MIN);
    vector<vector<int> > argmax_r(m);
    REP (y, n) {
        bool used = false;
        REP (x, m) {
            if (max_r[x] < r[y][x]) {
                max_r[x] = r[y][x];
                for (int y1 : argmax_r[x]) {
                    REP3 (x1, x + 1, m) {
                        if (max_r[x1] == r[y1][x1]) {
                            argmax_r[x1].push_back(y1);
                            break;
                        }
                    }
                }
                argmax_r[x].clear();
            }
            if (max_r[x] <= r[y][x]) {
                if (not used) {
                    used = true;
                    argmax_r[x].push_back(x);
                }
            }
        }

        // output
        int answer = 0;
        REP (x, m) {
            answer += argmax_r[x].size();
        }
        cout << answer << endl;
    }
    return 0;
}
0