pub type WeightedGraph<W> = Vec<Vec<(usize, W)>>;
重みありグラフ
pub struct WeightedGraph<W> { /* private fields */ }