結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | 184 |
提出日時 | 2015-03-02 00:25:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 989 bytes |
コンパイル時間 | 569 ms |
コンパイル使用メモリ | 58,192 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-06-24 00:51:43 |
合計ジャッジ時間 | 7,244 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
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 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:42:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d%d%d%d",&n,&m,&s,&g); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:46:32: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | int a,b,c;scanf("%d%d%d",&a,&b,&c); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <map> #include <vector> #include <algorithm> using namespace std; //namaega184 bool visit[300]; vector<int> ans,tmp; int clist[201][201]; int n,m,s,g,mincst=1000000001; vector< vector<int> > v(201); int dfs(int now,int cst){ if(cst>mincst)return 0; if(now==g){ if(mincst>=cst){ if(ans.size()==0)ans=tmp; else if(ans>tmp)ans=tmp; return 0; } } for(int i=0;i<v[now].size();i++){ if(!visit[v[now][i]]){ tmp.push_back(v[now][i]); visit[v[now][i]]=1; dfs(v[now][i],cst+clist[now][v[now][i]]); tmp.pop_back(); visit[v[now][i]]=0; } } return 0; } int main(){ scanf("%d%d%d%d",&n,&m,&s,&g); //v.assign(n); for(int i=0;i<m;i++){ int a,b,c;scanf("%d%d%d",&a,&b,&c); clist[a][b]=clist[b][a]=c; v[a].push_back(b); v[b].push_back(a); } tmp.push_back(s); visit[s]=1; dfs(s,0); for(int i=0;i<ans.size();i++)printf("%d ",ans[i]); puts("\n"); return 0; }