結果

問題 No.408 五輪ピック
ユーザー pekempeypekempey
提出日時 2016-08-05 22:43:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 823 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 163,476 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-11-07 00:31:11
合計ジャッジ時間 4,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 14 ms
6,784 KB
testcase_06 AC 160 ms
52,224 KB
testcase_07 AC 17 ms
6,784 KB
testcase_08 AC 12 ms
6,784 KB
testcase_09 AC 12 ms
5,760 KB
testcase_10 AC 145 ms
35,940 KB
testcase_11 AC 135 ms
31,360 KB
testcase_12 AC 198 ms
38,272 KB
testcase_13 AC 14 ms
7,680 KB
testcase_14 AC 51 ms
18,688 KB
testcase_15 AC 12 ms
5,888 KB
testcase_16 AC 16 ms
9,216 KB
testcase_17 AC 16 ms
6,784 KB
testcase_18 AC 17 ms
6,528 KB
testcase_19 AC 19 ms
6,400 KB
testcase_20 AC 95 ms
32,896 KB
testcase_21 AC 54 ms
20,352 KB
testcase_22 AC 162 ms
52,736 KB
testcase_23 AC 38 ms
53,760 KB
testcase_24 AC 148 ms
54,144 KB
testcase_25 AC 96 ms
5,888 KB
testcase_26 AC 342 ms
54,272 KB
testcase_27 AC 309 ms
6,400 KB
testcase_28 AC 10 ms
5,248 KB
testcase_29 AC 10 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘bool solve()’:
main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |                 scanf("%d %d", &u, &v);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, m;
vector<int> g[20202];
bitset<20202> path[20202]; // last

bool solve() {
	cin >> n >> m;
	for (int i = 0; i < m; i++) {
		int u, v;
		scanf("%d %d", &u, &v);
		u--;
		v--;
		g[u].push_back(v);
		g[v].push_back(u);
	}

	for (int i : g[0]) {
		for (int j : g[i]) if (j != 0) {
			path[j][i] = true;
		}
	}

	for (int i = 1; i < n; i++) {
		for (int j : g[i]) if (j != 0) {
			bool p1 = path[i][j];
			bool p2 = path[j][i];
			path[i][j] = false;
			path[j][i] = false;
			if (path[i].count() == 1 && path[j].count() == 1) {
				if ((path[i] & path[j]).none()) return true;
			} else if (path[i].count() >= 1 && path[j].count() >= 1) {
				return true;
			}
			path[i][j] = p1;
			path[j][i] = p2;
		}
	}

	return false;
}

int main() {
	puts(solve() ? "YES" : "NO");
}
0