結果

問題 No.709 優勝可能性
ユーザー Arumakan1727Arumakan1727
提出日時 2018-12-02 01:10:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 3,500 ms
コード長 3,173 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 169,220 KB
実行使用メモリ 12,320 KB
最終ジャッジ日時 2023-09-09 12:02:15
合計ジャッジ時間 5,635 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,236 KB
testcase_01 AC 5 ms
7,244 KB
testcase_02 AC 5 ms
7,268 KB
testcase_03 AC 4 ms
7,184 KB
testcase_04 AC 5 ms
7,240 KB
testcase_05 AC 5 ms
7,268 KB
testcase_06 AC 4 ms
7,220 KB
testcase_07 AC 4 ms
7,248 KB
testcase_08 AC 5 ms
7,304 KB
testcase_09 AC 5 ms
7,192 KB
testcase_10 AC 47 ms
12,248 KB
testcase_11 AC 23 ms
12,128 KB
testcase_12 AC 90 ms
12,124 KB
testcase_13 AC 91 ms
12,140 KB
testcase_14 AC 83 ms
12,180 KB
testcase_15 AC 77 ms
12,320 KB
testcase_16 AC 73 ms
12,176 KB
testcase_17 AC 72 ms
11,928 KB
testcase_18 AC 4 ms
7,180 KB
testcase_19 AC 5 ms
7,284 KB
testcase_20 AC 122 ms
11,976 KB
testcase_21 AC 124 ms
11,936 KB
testcase_22 AC 5 ms
7,208 KB
testcase_23 AC 4 ms
7,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h" // {{{
using namespace std; typedef long long ll; typedef pair<int,int> pii;
#define val         const auto
#define eb          emplace_back
#define emp         emplace
#define fi          first
#define se          second
#define outl(x)     cout << (x) << '\n'
#define reps(i,s,n) for(int i=(s); i < (int)(n); ++i)
#define rep(i,n)    reps(i,0,n)
#define repr(i,h,l) for(int i=(h); i >= (int)(l); --i)
#define ALL(x)      begin(x), end(x)
#define TMPLT(T,U)  template<class T, class U>
#define ten(p)      ((long long)(1e##p))
#define FILL(a,v)   memset((a), (v), sizeof(a))
#ifdef  DEBUG
#define debug(...)  fprintf(stderr, __VA_ARGS__)
#define show(x)     clog << #x << " \t\t= " << (x) << '\n'
#define show2(x,y)  clog << '(' << #x << ',' << #y << ")\t\t= " << '(' << (x) << "\t, " << (y) << ")\n"
#define LN()        fputs("\n--------------------------------\n", stderr)
#else
#define debug(...)
#define show(x)
#define show2(x,y)
#define LN()
#endif
#define def(op) inline bool operator op (const T &that) const { return comp(that) op 0; }
template<class T> struct Ordered
{ virtual int comp(const T &that) const = 0; def(==); def(!=); def(<); def(<=); def(>); def(>=); };
#undef def
namespace {
  TMPLT(T,U) inline constexpr common_type_t<T,U> gcd(T x, U y)
  { return (x<y)? gcd(y,x) : (y <= 0)? x : gcd(y, x % y); }
  TMPLT(T,U) inline bool chmax(T &a, const U &b){return b>a ? a=b,1 : 0;}
  TMPLT(T,U) inline bool chmin(T &a, const U &b){return b<a ? a=b,1 : 0;}
  TMPLT(T,U) inline constexpr ll lcm(T x, U y) { return (ll)x/gcd(x,y) * y; }
  template<class Itr> string mkString(Itr begin, Itr end, const char *sp = " ") {
    static ostringstream oss; oss.str("");
    for(Itr i=begin; i != end; ++i) { if(i != begin)oss << sp; oss << *i; }
    return oss.str();
  }
  constexpr int INF = 0x3f3f3f3f; constexpr ll LINF = 0x3f3f3f3f3f3f3f3fLL;
  // }}}

constexpr int MX = ten(5) + 10;

struct Stack
{
  int idx = 0;
  vector<int> buf;
  Stack(): buf(MX) {}

  void push(int x){ buf[idx++] = x; }
  int  pop()      { return buf[--idx]; }
  int  top()      { return buf[idx-1]; }
  bool empty()    { return idx <= 0; }
};

void _main(const vector<char*> &args)
{
  int N, M;
  static int r[MX][11];
  static int cnt[MX] = {};

  cin >> N >> M;
  reps(i, 1, N+1) rep(j, M) cin >> r[i][j];

  Stack tops[11];
  rep(i, M) {
    r[0][i] = -1;
    tops[i].push(0);
  }
  cnt[0] = M;

  int ans = 1;
  for (int i = 1; i <= N; ++i) {
    rep(j, M) {

      val R = r[i][j];
      Stack &top = tops[j];

      if (R > r[top.top()][j]) {
        while( !top.empty() )
        {
          val idx = top.pop();
          --cnt[idx];
          if (cnt[idx] <= 0) {
            cnt[idx] = 0;
            --ans;
          }
        }
        top.push(i);
        ++cnt[i];
      }
      else if (R == r[top.top()][j]) {
        top.push(i);
        ++cnt[i];
      }

    }
    if (cnt[i] > 0) {
      ++ans;
    }
    outl(ans);
  }

}

} // {{{
signed main(signed argc, char *argv[]) {
#ifndef DEBUG
  ios::sync_with_stdio(false); cin.tie(nullptr);
#endif
  cout << fixed << setprecision(9); _main(vector<char*>(argv, argv+argc)); return 0;
} // }}}

0