結果

問題 No.606 カラフルタイル
ユーザー Lepton_sLepton_s
提出日時 2017-12-06 00:07:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,620 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 94,300 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:58:33
合計ジャッジ時間 3,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 176 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 46 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 176 ms
5,376 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <sstream>
#include <functional>
#include <map>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <list>
#include <numeric>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> P;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const ll INF = 1LL<<29;
const ll mod = 1e9+7;
#define rep(i,n) for(int (i)=0;(i)<(ll)(n);++(i))
#define repd(i,n,d) for(ll (i)=0;(i)<(ll)(n);(i)+=(d))
#define all(v) (v).begin(), (v).end()
#define pb(x) push_back(x)
#define mp(x,y) make_pair((x),(y))
#define mset(m,v) memset((m),(v),sizeof(m))
#define chmin(X,Y) ((X)>(Y)?X=(Y),true:false)
#define chmax(X,Y) ((X)<(Y)?X=(Y),true:false)
#define fst first
#define snd second
#define UNIQUE(x) (x).erase(unique(all(x)),(x).end())
template<class T> ostream &operator<<(ostream &os, const vector<T> &v){int n=v.size();rep(i,n)os<<v[i]<<(i==n-1?"":" ");return os;}

#define N 100010
char a[N];
int b[N], c[N];
bool used[2][N];

int main(){
	ll h, w, k, q;
	cin>>h>>k>>q;
	w = h;
	ll sum = h*w;
	rep(i, q){
		cin>>a[i]>>b[i]>>c[i];
	}
	vector<int> res(k);
	for(int i = q-1; i >= 0; i--){
		if(a[i]=='R' && !used[0][b[i]]){
			used[0][b[i]] = true;
			res[c[i]-1] += h;
			w--;
		} else if(a[i]=='C' && !used[1][b[i]]) {
			used[1][b[i]] = true;
			res[c[i]-1] += w;
			h--;
		}
	}
	rep(i, k) sum -= res[i];
	res[0] += sum;
	rep(i, k) cout<<res[i]<<endl;
	return 0;
}
0