結果
問題 | No.92 逃走経路 |
ユーザー | sggkshio |
提出日時 | 2018-03-07 08:19:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 1,266 bytes |
コンパイル時間 | 923 ms |
コンパイル使用メモリ | 86,220 KB |
実行使用メモリ | 28,192 KB |
最終ジャッジ日時 | 2024-09-24 16:43:53 |
合計ジャッジ時間 | 2,407 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
28,192 KB |
testcase_01 | AC | 13 ms
28,004 KB |
testcase_02 | AC | 13 ms
28,136 KB |
testcase_03 | AC | 12 ms
28,044 KB |
testcase_04 | AC | 12 ms
27,956 KB |
testcase_05 | AC | 18 ms
28,004 KB |
testcase_06 | AC | 15 ms
27,972 KB |
testcase_07 | AC | 15 ms
28,088 KB |
testcase_08 | AC | 26 ms
27,988 KB |
testcase_09 | AC | 27 ms
28,148 KB |
testcase_10 | AC | 19 ms
28,084 KB |
testcase_11 | AC | 21 ms
28,088 KB |
testcase_12 | AC | 30 ms
28,044 KB |
testcase_13 | AC | 26 ms
28,036 KB |
testcase_14 | AC | 29 ms
28,000 KB |
testcase_15 | AC | 33 ms
27,876 KB |
testcase_16 | AC | 40 ms
28,180 KB |
testcase_17 | AC | 50 ms
27,920 KB |
testcase_18 | AC | 27 ms
28,116 KB |
testcase_19 | AC | 19 ms
28,088 KB |
ソースコード
#define _USE_MATH_DEFINES #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<string> #include<iostream> #include<iostream> #include<cctype> #include<cstdio> #include<vector> #include<stack> #include<queue> #include <algorithm> #include<math.h> #include<set> #include<map> #include <sstream> #include<iomanip> #include <ctype.h> using namespace std; //#include<bits/stdc++.h> vector<long long int> f[1005][1005]; int main() { /* for (int i = 0; i <= 100; i++) { for (int j = 0; j <= 100; j++) { f[i][j] = 100000000000; } } */ int n, m, k; cin >> n >> m >> k; for (int i = 0; i < m; i++) { int a, b, c; cin >> a >> b >> c; f[a][b].push_back(c); f[b][a].push_back(c); } int x = n; bool g[1005][1005] = {}; for (int i = 0; i <= n; i++) { g[0][i] = 1; } for (int i = 0; i < k; i++) { int d; cin >> d; for (int j = 1; j <= n; j++) { for (int y = 1; y <= n; y++) { //cout << f[i][j]; for(int t=0;t<f[j][y].size();t++) if (f[j][y][t] == d) { // cout << "#"; cout << i << j; g[i + 1][y] += g[i][j]; } } } } x = 0; for (int i = 0; i <= n; i++)x += g[k][i]; cout << x << endl; for (int i = 1; i <= n; i++) { if (!g[k][i])continue; cout << i << " "; } cout << endl; return 0; }