結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー ygussanyygussany
提出日時 2021-05-22 18:47:30
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 26,284 KB
最終ジャッジ日時 2024-07-17 15:08:31
合計ジャッジ時間 1,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
26,148 KB
testcase_01 AC 8 ms
26,212 KB
testcase_02 AC 8 ms
26,060 KB
testcase_03 AC 8 ms
26,064 KB
testcase_04 AC 8 ms
26,260 KB
testcase_05 AC 19 ms
26,092 KB
testcase_06 AC 20 ms
26,144 KB
testcase_07 AC 20 ms
26,164 KB
testcase_08 AC 19 ms
26,180 KB
testcase_09 AC 19 ms
26,180 KB
testcase_10 AC 19 ms
26,172 KB
testcase_11 AC 19 ms
26,020 KB
testcase_12 AC 19 ms
26,164 KB
testcase_13 AC 19 ms
26,072 KB
testcase_14 AC 8 ms
26,108 KB
testcase_15 AC 8 ms
26,080 KB
testcase_16 AC 8 ms
26,108 KB
testcase_17 AC 8 ms
26,164 KB
testcase_18 AC 8 ms
26,256 KB
testcase_19 AC 8 ms
26,116 KB
testcase_20 AC 8 ms
25,996 KB
testcase_21 AC 8 ms
26,052 KB
testcase_22 AC 8 ms
26,120 KB
testcase_23 AC 7 ms
26,096 KB
testcase_24 AC 8 ms
26,092 KB
testcase_25 AC 8 ms
26,124 KB
testcase_26 AC 8 ms
26,208 KB
testcase_27 AC 8 ms
26,184 KB
testcase_28 AC 8 ms
26,084 KB
testcase_29 AC 8 ms
25,980 KB
testcase_30 AC 8 ms
26,172 KB
testcase_31 AC 8 ms
26,152 KB
testcase_32 AC 8 ms
26,184 KB
testcase_33 AC 7 ms
26,284 KB
testcase_34 AC 8 ms
26,148 KB
testcase_35 AC 8 ms
26,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

// O(N^2) time
int solve_adj_mat()
{
	int i, N, M, u, w, deg[5001] = {};
	char adj[5001][5001] = {};
	scanf("%d %d", &N, &M);
	for (i = 0; i < M; i++) {
		scanf("%d %d", &u, &w);
		adj[u][w] = 1;
		adj[w][u] = 1;
		deg[u]++;
		deg[w]++;
	}
	
	int ans = 0;
	while (1) {
		for (u = 1; u <= N; u++) if (deg[u] == 1) break;
		if (u > N) break;
		ans ^= 1;
		for (w = 1; w <= N; w++) {
			if (adj[u][w] == 0) continue;
			adj[u][w] = 0;
			adj[w][u] = 0;
			deg[u]--;
			deg[w]--;
		}
	}
	return ans;
}

int main()
{
	if (solve_adj_mat() == 1) printf("Yes\n");
	else printf("No\n");
	fflush(stdout);
	return 0;
}
0