結果

問題 No.709 優勝可能性
ユーザー 0x19f0x19f
提出日時 2018-06-29 23:57:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 544 ms / 3,500 ms
コード長 840 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 166,428 KB
実行使用メモリ 21,312 KB
最終ジャッジ日時 2024-07-01 00:30:08
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 262 ms
9,472 KB
testcase_11 AC 183 ms
9,344 KB
testcase_12 AC 424 ms
12,664 KB
testcase_13 AC 380 ms
15,624 KB
testcase_14 AC 343 ms
15,744 KB
testcase_15 AC 315 ms
15,872 KB
testcase_16 AC 302 ms
16,768 KB
testcase_17 AC 306 ms
21,312 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 544 ms
15,872 KB
testcase_21 AC 539 ms
15,616 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, a, n) for(ll i = ((ll) a); i < ((ll) n); i++)
using namespace std;
typedef long long ll;

int main(void) {
  ll N, M;
  cin >> N >> M;
  vector<vector<ll>> R(N, vector<ll>(M));
  REP(i, 0, N) REP(j, 0, M) cin >> R[i][j];

  vector<vector<ll>> current(M);
  vector<ll> cnt(N, 0);
  vector<ll> value(M, 0);
  ll ans = 0;
  REP(i, 0, N) {
    bool ok = false;
    REP(j, 0, M) {
      if(value[j] < R[i][j]) {
        cnt[i]++;
        for(ll k : current[j]) {
          cnt[k]--;
          if(cnt[k] == 0) ans--;
        }
        value[j] = R[i][j];
        current[j].clear();
        current[j].push_back(i);
        ok = true;
      } else if(value[j] == R[i][j]) {
        cnt[i]++;
        current[j].push_back(i);
        ok = true;
      }
    }
    if(ok) ans++;
    cout << ans << endl;
  }
}
0