結果

問題 No.606 カラフルタイル
ユーザー bal4ubal4u
提出日時 2019-07-22 08:14:20
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,134 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 29,356 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-05 21:18:50
合計ジャッジ時間 3,024 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 0 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 0 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 0 ms
4,380 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 0 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 0 ms
4,384 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 0 ms
4,376 KB
testcase_16 AC 4 ms
4,376 KB
testcase_17 AC 10 ms
4,376 KB
testcase_18 AC 4 ms
4,376 KB
testcase_19 AC 5 ms
4,376 KB
testcase_20 AC 10 ms
4,376 KB
testcase_21 AC 6 ms
4,376 KB
testcase_22 AC 6 ms
4,380 KB
testcase_23 AC 7 ms
4,384 KB
testcase_24 AC 9 ms
4,376 KB
testcase_25 AC 7 ms
4,376 KB
testcase_26 AC 10 ms
4,380 KB
testcase_27 AC 10 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: 関数 ‘in’ 内:
main.c:9:14: 警告: 関数 ‘getchar_unlocked’ の暗黙的な宣言です [-Wimplicit-function-declaration]
    9 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:17:24: 備考: in expansion of macro ‘gc’
   17 |         int n = 0, c = gc();
      |                        ^~
main.c: 関数 ‘out’ 内:
main.c:10:15: 警告: 関数 ‘putchar_unlocked’ の暗黙的な宣言です [-Wimplicit-function-declaration]
   10 | #define pc(c) putchar_unlocked(c)
      |               ^~~~~~~~~~~~~~~~
main.c:26:17: 備考: in expansion of macro ‘pc’
   26 |         if (!n) pc('0');
      |                 ^~

ソースコード

diff #

// yukicoder: No.606 カラフルタイル
// 2019.7.22 bal4u

#include <stdio.h>

typedef long long ll;

#if 1
#define gc() getchar_unlocked()
#define pc(c) putchar_unlocked(c)
#else
#define gc() getchar()
#define pc(c) putchar(c)
#endif

int in() {   // 非負整数の入力
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

void out(ll n) { // 非負整数の表示(出力)
	int i;
	char b[50];

	if (!n) pc('0');
	else {
		i = 0; while (n) b[i++] = n % 10 + '0', n /= 10;
		while (i--) pc(b[i]);
	}
	pc('\n');
}

#define MAX 100003
char a[MAX]; int b[MAX], c[MAX];
char fr[MAX], fc[MAX];
ll col[MAX];
int sr, sc; ll zan;
int N, K;

int main()
{
	int i, n, Q;

	N = in(), K = in(), Q = in();
	i = Q; while (i--) { a[i] = gc(), gc(), b[i] = in()-1, c[i] = in()-1; }
	sr = sc = 0, zan = (ll)N*N;
	for (i = 0; i < Q; i++) {
		if (a[i] == 'R') {
			if (fr[b[i]]) continue;
			fr[b[i]] = 1, sr++;
			n = N - sc;
		} else {
			if (fc[b[i]]) continue;
			fc[b[i]] = 1, sc++;
			n = N - sr;
		}
		col[c[i]] += n, zan -= n;
	}
	col[0] += zan;
	for (i = 0; i < K; i++) out(col[i]);
	return 0;
}
0