結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー ygussanyygussany
提出日時 2021-05-22 18:49:35
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 627 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 33,128 KB
最終ジャッジ日時 2024-07-17 15:08:25
合計ジャッジ時間 3,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
33,124 KB
testcase_01 AC 23 ms
26,196 KB
testcase_02 AC 8 ms
26,124 KB
testcase_03 AC 8 ms
26,196 KB
testcase_04 AC 8 ms
26,144 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
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 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

// O(N^3) time
int solve_adj_mat()
{
	int i, N, M, u, w;
	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;
	}
	
	int ans = 0, tmp;
	while (1) {
		for (u = 1; u <= N; u++) {
			for (w = 1, tmp = 0; w <= N; w++) tmp += adj[u][w];
			if (tmp == 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;
		}
	}
	return ans;
}

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