-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
最長路問題について #1
Comments
#1 (comment) 引用した文は最短経路問題に関しての話 また記事の主張としては、グラフがDAGならトポロジカルソートでDPが使えると言っていたが、今回はDAGではないのでトポロジカルソートは恐らく使えない。
関係ないが、bitDP |
https://qiita.com/wakimiko/items/69b86627bea0e8fe29d5 これの通りに実装すればできそう |
ワーシャルフロイド法で実装できた?が、未テスト。 https://scrapbox.io/hkurokawa-cp/%E6%9C%80%E9%95%B7%E7%B5%8C%E8%B7%AF |
https://sen-comp.hatenablog.com/entry/2020/01/05/194503
とある。ダイクストラについてはこちら
https://products.sint.co.jp/topsic/blog/dijkstras-algorithm
ダイクストラで良さそうではあるが、解決すべき問題は
あたり。
また、python 等使えばライブラリで実装されているようだが、使用するかどうか
恐らくテスト後の面接でも、テストで解いた問題について説明を求められると思うので、c++ で実装し触ってみる経験を取ろうと思っている
( 今回計算量のオーダーの指定もないので。しかし自分で作るならばエラーが発生するのが面倒なので、テストは入念に作る必要がある )
The text was updated successfully, but these errors were encountered: