結果

問題 No.92 逃走経路
ユーザー Zu_rinZu_rin
提出日時 2020-09-09 11:33:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-05-08 11:34:57
合計ジャッジ時間 13,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <list>
#include <set>
#include <queue>
#include <algorithm>
#define rep(i, n) for(i = 0; i < (n); i++)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define MOD 1000000007
#define PI 3.14159265358979323846
#define INF 1 << 30

using namespace std;
typedef long long ll;
typedef pair<int, int> pp;

void DFS(int n, int dep, vector<list<pp>> & d, vector<int> & t, set<int> &ans) {
	if (dep == t.size()) {
		ans.insert(n);
		return;
	}
	int& x = t[dep];
	for (auto it = d[n].begin(); it != d[n].end(); it++) {
		if ((*it).first == x) {
			DFS((*it).second, dep + 1, d, t, ans);
		}
	}
	return;
}

int main(void) {
	int num, m, k, i, a, b, c;
	cin >> num >> m >> k;
	vector<list<pp>> d(num + 1);
	vector<int> t(k);
	set<int> ans;
	rep(i, m) {
		cin >> a >> b >> c;
		d[a].push_back(pp(c, b));
		d[b].push_back(pp(c, a));
	}
	rep(i, k) {
		cin >> t[i];
	}
	for (i = 1; i <= num; i++) {
		DFS(i, 0, d, t, ans);
	}
	cout << ans.size() << "\n";
	for (auto it = ans.begin(); it != ans.end(); it++) {
		cout << *it << "\n";
	}
	return 0;
}
0