結果
問題 | No.92 逃走経路 |
ユーザー | KKT89 |
提出日時 | 2022-06-01 13:03:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 1,632 bytes |
コンパイル時間 | 1,852 ms |
コンパイル使用メモリ | 144,980 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 01:28:23 |
合計ジャッジ時間 | 3,043 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 25 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 43 ms
6,944 KB |
testcase_11 | AC | 25 ms
6,940 KB |
testcase_12 | AC | 25 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 6 ms
6,944 KB |
testcase_15 | AC | 8 ms
6,944 KB |
testcase_16 | AC | 6 ms
6,940 KB |
testcase_17 | AC | 7 ms
6,944 KB |
testcase_18 | AC | 6 ms
6,940 KB |
testcase_19 | AC | 5 ms
6,940 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <iostream> #include <vector> #include <algorithm> #include <map> #include <queue> #include <cstdio> #include <ctime> #include <assert.h> #include <chrono> #include <random> #include <numeric> #include <set> #include <deque> #include <stack> #include <sstream> #include <utility> #include <cstring> #include <unordered_map> #include <unordered_set> #include <tuple> #include <array> #include <bitset> using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } inline double time() { return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n,m,k; cin >> n >> m >> k; vector<vector<pair<int,int>>> g(n); for(int i=0;i<m;i++){ int x,y,c; cin >> x >> y >> c; x--; y--; g[x].push_back({y,c}); g[y].push_back({x,c}); } vector<int> v; for(int i=0;i<n;i++){ v.push_back(i); } while(k--){ int d; cin >> d; vector<int> nv; for(int i:v){ for(auto t:g[i]){ if(t.second == d)nv.push_back(t.first); } } sort(nv.begin(), nv.end()); nv.erase(unique(nv.begin(), nv.end()),nv.end()); swap(v,nv); } cout << v.size() << "\n"; for(int i=0;i<v.size();i++){ if(i) cout << " "; cout << v[i]+1; } cout << "\n"; }