結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-11 14:14:25
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 1,055 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 34,204 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-05-08 13:16:20
合計ジャッジ時間 6,180 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
15,616 KB
testcase_01 AC 1 ms
5,248 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>
#include <stdlib.h>

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma warning(disable: 4996)


int main(void) {
	int N, K;	scanf("%d", &N);	scanf("%d", &K);
	char** s = (char**)malloc(sizeof(char*) * N);
	for (int i = 0; i < N; ++i) {
		s[i] = (char*)malloc(sizeof(char) * K);
		scanf("%s", s[i]);
	}

	int* local_max = (int*)malloc(sizeof(int) * N);
	for (int i = 0; i < N; ++i) {
		local_max[i] = 1;
	}
	for (int i = 0; i < N - 1; ++i) {
		for (int j = i + 1; j < N; ++j) {
			int flag = 1;
			for (int k = 0; k < K; ++k) {
				if (s[i][k] <= s[j][k]) {
					continue;
				}
				flag = 0;
				break;
			}
			if (flag == 1) {
				local_max[j] = 0;
				continue;
			}

			flag = 1;
			for (int k = 0; k < K; ++k) {
				if (s[i][k] >= s[j][k]) {
					continue;
				}
				flag = 0;
				break;
			}
			if (flag == 1) {
				local_max[i] = 0;
				continue;
			}
		}
	}

	int ans = N;
	for (int i = 0; i < N; ++i) {
		ans -= local_max[i];
	}
	printf("%d\n", ans);

	return 0;
}
0