結果

問題 No.709 優勝可能性
ユーザー ei1333333ei1333333
提出日時 2018-03-29 23:58:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 543 ms / 3,500 ms
コード長 651 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 206,188 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-06-26 00:07:44
合計ジャッジ時間 7,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 260 ms
7,884 KB
testcase_11 AC 178 ms
7,812 KB
testcase_12 AC 425 ms
7,748 KB
testcase_13 AC 383 ms
7,588 KB
testcase_14 AC 350 ms
7,896 KB
testcase_15 AC 319 ms
7,732 KB
testcase_16 AC 307 ms
8,016 KB
testcase_17 AC 308 ms
9,728 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 540 ms
7,728 KB
testcase_21 AC 543 ms
7,748 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;


int main() {
  int N, M, R[100000][10];

  stack< int > st[10];
  int in[100000] = {}, sz = 0;

  cin >> N >> M;
  assert(1 <= N && N <= 100000);
  assert(1 <= M && M <= 10);
  for(int i = 0; i < N; i++) {
    for(int j = 0; j < M; j++) {
      cin >> R[i][j];
      assert(1 <= R[i][j] && R[i][j] <= 1000000000);

      while(!st[j].empty() && R[st[j].top()][j] < R[i][j]) {
        if(--in[st[j].top()] == 0) --sz;
        st[j].pop();
      }

      if(st[j].empty() || R[st[j].top()][j] == R[i][j]) {
        if(++in[i] == 1) ++sz;
        st[j].push(i);
      }
    }
    cout << sz << endl;
  }
}
0