Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dist [idx]が最小になるように、ただし、visited [idx]がfalseであるインデックスidxを見つけるにはどうすればよいですか?コンテキストは、ダイクストラのアルゴリズムを実装するためのものです。
min((idx for idx in indexes if not visited[idx]), key=lambda idx: dist[idx])