We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem name: K-Shortest Paths (Undirected) Problem ID: k_shortest_paths_undirected
N 頂点 M 辺の無向グラフがあり、辺に正の長さがついている。 s,t 間の単純パスを、短い順に K 個計算してください。
k 行目には k 番目の最短パスの重みを出力、なければ -1 を出力。
重み 0 の辺がある場合は重み eps で置き換えればよい [2] ので、正重みだけ verify できればよいと思います。
The text was updated successfully, but these errors were encountered:
#508 これと重複ですか?
Sorry, something went wrong.
そちらでは検討に入っていないように見えます。しかし仮に重複だとして、有向グラフの問題とは事情が結構違いそう(特に、有向は yukicoder に出題がある)なので分けると都合が良いと思います。
ああ、あっちは有向でこっちは無向でした。理解。
No branches or pull requests
Problem name: K-Shortest Paths (Undirected)
Problem ID: k_shortest_paths_undirected
問題
N 頂点 M 辺の無向グラフがあり、辺に正の長さがついている。 s,t 間の単純パスを、短い順に K 個計算してください。
計算量
Reference
入出力
k 行目には k 番目の最短パスの重みを出力、なければ -1 を出力。
Note / Disucussion
重み 0 の辺がある場合は重み eps で置き換えればよい [2] ので、正重みだけ verify できればよいと思います。
The text was updated successfully, but these errors were encountered: