結果

問題 No.2178 Payable Magic Items
ユーザー ygussanyygussany
提出日時 2023-01-06 22:00:36
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 808 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-05-08 13:33:11
合計ジャッジ時間 6,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
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 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int is_smaller(int K, char s[], char t[])
{
	int i;
	for (i = 0; i < K; i++) if (s[i] > t[i]) return 0;
	return 1;
}

int main()
{
	int i, N, K;
	char S[200001][10];
	scanf("%d %d", &N, &K);
	for (i = 1; i <= N; i++) scanf("%s", S[i]);
	
	int j, next[200003], prev[200003];
	for (i = 1, next[0] = 1, prev[N+1] = N; i <= N; i++) {
		next[i] = i + 1;
		prev[i] = i - 1;
	}
	for (i = 1; i <= N; i++) {
		for (j = next[0]; j < i; j = next[j]) {
			if (is_smaller(K, S[j], S[i])) {
				j = prev[j];
				next[j] = next[next[j]];
				prev[next[j]] = j;
			} else if (is_smaller(K, S[i], S[j])) {
				next[prev[i]] = next[i];
				prev[next[i]] = prev[i];
				break;
			}
		}
	}
	
	int ans = 0;
	for (i = next[0]; i <= N; i = next[i]) ans++;
	printf("%d\n", N - ans);
	fflush(stdout);
	return 0;
}
0