結果
問題 | No.1565 Union |
ユーザー | maguro |
提出日時 | 2021-04-21 10:22:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,365 bytes |
コンパイル時間 | 2,380 ms |
コンパイル使用メモリ | 211,324 KB |
実行使用メモリ | 21,320 KB |
最終ジャッジ日時 | 2024-06-25 10:05:19 |
合計ジャッジ時間 | 6,826 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
9,284 KB |
testcase_01 | WA | - |
testcase_02 | AC | 3 ms
9,412 KB |
testcase_03 | AC | 4 ms
8,896 KB |
testcase_04 | WA | - |
testcase_05 | AC | 4 ms
8,900 KB |
testcase_06 | AC | 4 ms
9,416 KB |
testcase_07 | AC | 4 ms
9,672 KB |
testcase_08 | WA | - |
testcase_09 | AC | 4 ms
8,896 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 236 ms
21,320 KB |
testcase_16 | WA | - |
testcase_17 | AC | 239 ms
21,316 KB |
testcase_18 | AC | 243 ms
21,192 KB |
testcase_19 | AC | 242 ms
21,316 KB |
testcase_20 | AC | 149 ms
19,908 KB |
testcase_21 | AC | 150 ms
19,864 KB |
testcase_22 | AC | 149 ms
19,904 KB |
testcase_23 | AC | 149 ms
19,892 KB |
testcase_24 | AC | 147 ms
19,904 KB |
testcase_25 | AC | 163 ms
20,036 KB |
testcase_26 | AC | 157 ms
19,908 KB |
testcase_27 | AC | 159 ms
19,912 KB |
testcase_28 | AC | 162 ms
19,776 KB |
testcase_29 | AC | 159 ms
19,892 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; constexpr int Inf = 2000000030; constexpr ll INF= 2000000000000000001; constexpr ll MOD = 1000000007; const double PI = 3.14159265358979323846; typedef pair<ll,ll> P; typedef pair<ll,P> PP; template<typename T> vector<T> make_vector(size_t s) { return vector<T>(s); } template<typename T,typename... Args> auto make_vector(size_t s,Args... args) { return vector(s,make_vector<T>(args...)); } template<typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template<typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } ll mod(ll val, ll M) { val = val % M; if(val < 0) { val += M; } return val; } template<typename T> T modpow(T N, T P, T M){ if(P == 0) return 1; if(P < 0) return 0; if(P % 2 == 0){ ll t = RS(N, P/2, M); if(M == -1) return t * t; return t * t % M; } if(M == -1) return N * modpow(N,P - 1,M); return N * modpow(N, P-1, M) % M; } struct edge{ int to; ll cost; }; int N; //頂点数 vector<edge> graph[200010]; ll dist[200010]; //頂点sからの最短距離 int pre[200010]; void Dijkstra(int s) { //greater<P>を指定することでfirstが小さい順に取り出せる priority_queue<P,vector<P>,greater<P>> que; fill(dist,dist + N,INF); fill(pre,pre + N,-1); dist[s] = 0; que.push(P(0,s)); while(!que.empty()) { P p = que.top(); que.pop(); int v = p.second; if(dist[v] < p.first) { continue; } for(auto x:graph[v]) { if(chmin(dist[x.to],dist[v] + x.cost)) { pre[x.to] = v; que.push(P(dist[x.to],x.to)); } } } } //最短路を取得 vector<int> get_path(int t) { vector<int> path; while(t != -1) { path.push_back(t); t = pre[t]; } reverse(path.begin(),path.end()); return path; } int main() { cin >> N; int M; cin >> M; for(int i = 0;i < M;i++) { int a,b; cin >> a >> b; a--; b--; graph[a].push_back(edge{b,1}); graph[b].push_back(edge{a,1}); } Dijkstra(0); cout << dist[N - 1] << endl; }