結果
問題 | No.2565 はじめてのおつかい |
ユーザー | strawberry0929 |
提出日時 | 2023-12-02 16:48:41 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,084 bytes |
コンパイル時間 | 5,490 ms |
コンパイル使用メモリ | 311,968 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-09-26 20:45:39 |
合計ジャッジ時間 | 9,876 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 91 ms
9,600 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 20 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 70 ms
8,576 KB |
testcase_17 | WA | - |
testcase_18 | AC | 19 ms
5,376 KB |
testcase_19 | AC | 74 ms
6,912 KB |
testcase_20 | AC | 64 ms
6,656 KB |
testcase_21 | WA | - |
testcase_22 | AC | 38 ms
5,632 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 65 ms
6,784 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 76 ms
7,808 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 2 ms
5,376 KB |
testcase_52 | AC | 44 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; using mint = modint998244353; using ll = long long; using lb = long double; using VI = vector<int>; using VL = vector<ll>; using P = pair<int, int>; inline void scan(){} template<class Head,class... Tail> inline void scan(Head&head,Tail&... tail){std::cin>>head;scan(tail...);} #define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__) #define LB(...) lb __VA_ARGS__;scan(__VA_ARGS__) #define INT(...) int __VA_ARGS__;scan(__VA_ARGS__) #define STR(...) string __VA_ARGS__;scan(__VA_ARGS__) template<class ll> inline bool chmax(ll& a, ll b) { if (a < b) { a = b; return 1; } return 0; }template<class ll> inline bool chmin(ll& a, ll b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> std::istream &operator>>(std::istream&is,std::vector<T>&v){for(T &in:v){is>>in;}return is;} template<typename T> std::ostream &operator<<(std::ostream&os,const std::vector<T>&v){for(auto it=std::begin(v);it!=std::end(v);){os<<*it<<((++it)!=std::end(v)?" ":"");}return os;} #define rep(i, s, n) for (int i = (s); i < (int)(n); i++) #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(),(a).rend() const int inf = INT_MAX / 2; const ll infl = 1LL << 60; //_ int main(){ INT(n, m); vector<vector<int>> g(n); rep(i, 0, m){ INT(u, v); u--; v--; g[u].push_back(v); g[v].push_back(u); } vector<int> dist(n, inf); queue<int> q; dist[0] = 0; q.push(0); while(!q.empty()){ int v = q.front(); q.pop(); for(auto nv : g[v]){ if(dist[nv] == inf){ dist[nv] = dist[v] + 1; q.push(nv); } } } ll ans = dist[n - 2] + dist[n - 1]; dist = vector<int>(n, inf); dist[n - 2] = 0; q.push(n - 2); while(!q.empty()){ int v = q.front(); q.pop(); if(v == 0){ continue; } for(auto nv : g[v]){ if(dist[nv] == inf){ dist[nv] = dist[v] + 1; q.push(nv); } } } ans += dist[n - 1]; if(ans >= inf){ cout << -1 << endl; }else{ cout << ans << endl; } }