結果

問題 No.709 優勝可能性
ユーザー aa
提出日時 2018-08-01 03:18:32
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 528 ms / 3,500 ms
コード長 2,531 bytes
コンパイル時間 1,990 ms
コンパイル使用メモリ 103,776 KB
実行使用メモリ 6,004 KB
最終ジャッジ日時 2023-10-19 20:38:01
合計ジャッジ時間 6,511 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 254 ms
4,348 KB
testcase_11 AC 171 ms
4,348 KB
testcase_12 AC 416 ms
4,348 KB
testcase_13 AC 368 ms
4,348 KB
testcase_14 AC 333 ms
4,348 KB
testcase_15 AC 308 ms
4,348 KB
testcase_16 AC 288 ms
4,348 KB
testcase_17 AC 293 ms
6,004 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 528 ms
4,348 KB
testcase_21 AC 527 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <cmath>
#include <complex>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cassert>
#include <iomanip>
using namespace std;

#define Rep(b, e, i) for(int i = b; i <= e; i++)
#define Repr(e, b, i) for(int i = e; i >= b; i--)
#define rep(n, i) Rep(0, n-1, i)
#define repr(n, i) Repr(n-1, 0, i)
#define all(v) (v).begin(), (v).end()
#define pb(v) push_back(v)
#define uniq(v) (v).erase(unique(all(v)),(v).end())
#define bitcnt(x) __builtin_popcount(x)
#define fst first
#define snd second
#define Pqaz(T) priority_queue<T,vector<T>,greater<T>>
#define Pqza(T) priority_queue<T>
#define put(x) cout << x;
#define putsp(x) cout << x << ' ';
#define putbd cout << "---------------------------------------------" << endl;
#define putln(x) cout << x << endl;
#define debug(x) cerr << #x << "=" << x << endl;
#define ENJYU std::ios::sync_with_stdio(false);std::cin.tie(0);

typedef long long ll;
typedef pair<ll, ll> llP;
typedef pair<int, int> intP;
typedef complex<double> comp;
typedef vector <int> vec;
typedef vector <ll> vecll;
typedef vector <double> vecd;
typedef vector <vec> mat;
typedef vector <vecll> matll;
typedef vector <vecd> matd;

//vector の中身を出力
template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

const int MAX = 200020;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<29;
const ll INFL = 1e18;
const int MOD = 1000000007;

const int dx[]={1,0,-1,0},dy[]={0,1,0,-1};
//const int dx[]={-1,-1,-1,0,1,1,1,0},dy[]={-1,0,1,1,1,0,-1,-1};

//********************************template END****************************************//

void solve(void){

	int N, M;
	cin >> N >> M;

	vec ms(M, 0), cnt(N, 0);
	vector<stack<int>> ss(M);

	int ans = 0;

	rep(N, i)
	{
		rep(M, j)
		{
			int r;
			cin >> r;
			if (r == ms[j])
			{
				if (cnt[i]++ == 0)
				{
					ans++;
				}
				ss[j].push(i);
			}
			else if(r > ms[j])
			{
				while(!ss[j].empty())
				{
					int x = ss[j].top();
					ss[j].pop();
					if (cnt[x]-- == 1)
					{
						ans--;
					}
				}
				if (cnt[i]++ == 0)
				{
					ans++;
				}
				ss[j].push(i);
				ms[j] = r;
			}
		}
		cout << ans << endl;
	}

}

int main(void){
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0