結果

問題 No.1207 グラフX
ユーザー ikdikd
提出日時 2020-09-03 20:51:42
言語 Rust
(1.77.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 8,158 bytes
コンパイル時間 13,518 ms
コンパイル使用メモリ 399,140 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-05-03 04:06:37
合計ジャッジ時間 28,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
44,032 KB
testcase_01 AC 233 ms
44,032 KB
testcase_02 AC 228 ms
44,032 KB
testcase_03 AC 229 ms
44,032 KB
testcase_04 AC 224 ms
44,160 KB
testcase_05 AC 289 ms
58,108 KB
testcase_06 AC 286 ms
58,240 KB
testcase_07 AC 285 ms
58,112 KB
testcase_08 AC 173 ms
29,784 KB
testcase_09 AC 191 ms
36,608 KB
testcase_10 AC 280 ms
49,664 KB
testcase_11 AC 283 ms
58,112 KB
testcase_12 AC 183 ms
31,360 KB
testcase_13 AC 93 ms
14,208 KB
testcase_14 AC 225 ms
42,240 KB
testcase_15 AC 202 ms
34,324 KB
testcase_16 AC 89 ms
14,956 KB
testcase_17 AC 150 ms
26,368 KB
testcase_18 AC 120 ms
25,856 KB
testcase_19 AC 137 ms
21,632 KB
testcase_20 AC 227 ms
43,120 KB
testcase_21 AC 17 ms
5,376 KB
testcase_22 AC 145 ms
26,880 KB
testcase_23 AC 176 ms
30,336 KB
testcase_24 AC 103 ms
23,040 KB
testcase_25 AC 227 ms
42,752 KB
testcase_26 AC 176 ms
32,640 KB
testcase_27 AC 208 ms
38,784 KB
testcase_28 AC 194 ms
36,864 KB
testcase_29 AC 199 ms
37,888 KB
testcase_30 AC 96 ms
17,664 KB
testcase_31 AC 81 ms
11,904 KB
testcase_32 AC 80 ms
17,536 KB
testcase_33 AC 86 ms
17,420 KB
testcase_34 AC 191 ms
33,628 KB
testcase_35 AC 17 ms
5,376 KB
testcase_36 AC 185 ms
35,712 KB
testcase_37 AC 171 ms
28,672 KB
testcase_38 AC 39 ms
8,832 KB
testcase_39 AC 88 ms
19,712 KB
testcase_40 AC 64 ms
9,088 KB
testcase_41 AC 126 ms
20,980 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 212 ms
43,916 KB
testcase_46 AC 213 ms
44,032 KB
testcase_47 AC 217 ms
44,032 KB
testcase_48 AC 220 ms
44,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

pub struct ProconReader<R: std::io::Read> {
    reader: R,
}

impl<R: std::io::Read> ProconReader<R> {
    pub fn new(reader: R) -> Self {
        Self { reader }
    }
    pub fn get<T: std::str::FromStr>(&mut self) -> T {
        use std::io::Read;
        let buf = self
            .reader
            .by_ref()
            .bytes()
            .map(|b| b.unwrap())
            .skip_while(|&byte| byte == b' ' || byte == b'\n' || byte == b'\r')
            .take_while(|&byte| byte != b' ' && byte != b'\n' && byte != b'\r')
            .collect::<Vec<_>>();
        std::str::from_utf8(&buf)
            .unwrap()
            .parse()
            .ok()
            .expect("Parse Error.")
    }
}

#[allow(dead_code)]
mod mint {
    use std::ops::{Add, BitAnd, Div, Mul, Rem, Shr, Sub};

    #[derive(Copy, Clone)]
    pub struct Mint<T> {
        x: T,
        mo: T,
    }
    impl<T> Mint<T>
    where
        T: Copy,
    {
        pub fn new(x: T, mo: T) -> Mint<T> {
            Mint { x, mo }
        }
    }
    impl<T> Mint<T>
    where
        T: Copy,
    {
        pub fn val(&self) -> T {
            self.x
        }
        pub fn mo(&self) -> T {
            self.mo
        }
    }
    impl<T> Add<T> for Mint<T>
    where
        T: Copy,
        T: Add<Output = T>,
        T: Rem<Output = T>,
    {
        type Output = Mint<T>;
        fn add(self, rhs: T) -> Mint<T> {
            Mint::new((self.val() + rhs % self.mo()) % self.mo(), self.mo())
        }
    }
    impl<T> Add<Mint<T>> for Mint<T>
    where
        T: Copy,
        Mint<T>: Add<T, Output = Mint<T>>,
    {
        type Output = Mint<T>;
        fn add(self, rhs: Mint<T>) -> Mint<T> {
            self + rhs.val()
        }
    }
    impl<T> Sub<T> for Mint<T>
    where
        T: Copy,
        T: Add<Output = T>,
        T: Sub<Output = T>,
        T: Rem<Output = T>,
    {
        type Output = Mint<T>;
        fn sub(self, rhs: T) -> Mint<T> {
            Mint::new(
                (self.val() + self.mo() - rhs % self.mo()) % self.mo(),
                self.mo(),
            )
        }
    }
    impl<T> Sub<Mint<T>> for Mint<T>
    where
        T: Copy,
        Mint<T>: Sub<T, Output = Mint<T>>,
    {
        type Output = Mint<T>;
        fn sub(self, rhs: Mint<T>) -> Mint<T> {
            self - rhs.val()
        }
    }
    impl<T> Mul<T> for Mint<T>
    where
        T: Copy,
        T: Mul<Output = T>,
        T: Rem<Output = T>,
    {
        type Output = Mint<T>;
        fn mul(self, rhs: T) -> Mint<T> {
            Mint::new((self.val() * rhs % self.mo()) % self.mo(), self.mo())
        }
    }
    impl<T> Mul<Mint<T>> for Mint<T>
    where
        T: Copy,
        Mint<T>: Mul<T, Output = Mint<T>>,
    {
        type Output = Mint<T>;
        fn mul(self, rhs: Mint<T>) -> Mint<T> {
            self * rhs.val()
        }
    }

    impl<T> Mint<T>
    where
        T: Copy,
        T: Sub<Output = T>,
        T: Div<Output = T>,
        T: PartialOrd,
        T: PartialEq,
        T: BitAnd<Output = T>,
        T: Shr<Output = T>,
        Mint<T>: Mul<Output = Mint<T>>,
    {
        pub fn pow(self, y: T) -> Mint<T> {
            let one = self.mo() / self.mo();
            let zero = self.mo() - self.mo();
            let mut res = Mint::one(self.mo());
            let mut base = self;
            let mut exp = y;
            while exp > zero {
                if (exp & one) == one {
                    res = res * base;
                }
                base = base * base;
                exp = exp >> one;
            }
            res
        }
    }
    impl<T> Div<T> for Mint<T>
    where
        T: Copy,
        T: Sub<Output = T>,
        T: Div<Output = T>,
        T: PartialOrd,
        T: PartialEq,
        T: BitAnd<Output = T>,
        T: Shr<Output = T>,
        Mint<T>: Mul<Output = Mint<T>>,
    {
        type Output = Mint<T>;
        fn div(self, rhs: T) -> Mint<T> {
            let one = self.mo() / self.mo();
            self * Mint::new(rhs, self.mo()).pow(self.mo() - one - one)
        }
    }
    impl<T> Div<Mint<T>> for Mint<T>
    where
        T: Copy,
        Mint<T>: Div<T, Output = Mint<T>>,
    {
        type Output = Mint<T>;
        fn div(self, rhs: Mint<T>) -> Mint<T> {
            self / rhs.val()
        }
    }
    impl<T> Mint<T>
    where
        T: Copy,
        T: Div<Output = T>,
        Mint<T>: Div<Output = Mint<T>>,
    {
        pub fn inv(self) -> Mint<T> {
            Mint::one(self.mo()) / self
        }
    }
    impl<T> std::fmt::Display for Mint<T>
    where
        T: Copy + std::fmt::Display,
    {
        fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
            write!(f, "{}", self.val())
        }
    }
    impl<T> Mint<T>
    where
        T: Copy,
        T: Sub<Output = T>,
    {
        pub fn zero(mo: T) -> Mint<T> {
            Mint { x: mo - mo, mo }
        }
    }
    impl<T> Mint<T>
    where
        T: Copy,
        T: Div<Output = T>,
    {
        pub fn one(mo: T) -> Mint<T> {
            Mint { x: mo / mo, mo }
        }
    }
}

use mint::Mint;

pub struct UnionFind {
    par: Vec<usize>,
    size: Vec<usize>,
}

impl UnionFind {
    pub fn new(n: usize) -> UnionFind {
        UnionFind {
            par: (0..n).map(|i| i).collect::<Vec<_>>(),
            size: vec![1; n],
        }
    }
    pub fn find(&mut self, i: usize) -> usize {
        if self.par[i] == i {
            self.par[i]
        } else {
            self.par[i] = self.find(self.par[i]);
            self.par[i]
        }
    }
    pub fn unite(&mut self, i: usize, j: usize) {
        let i = self.find(i);
        let j = self.find(j);
        if i == j {
            return;
        }
        let (i, j) = if self.size[i] >= self.size[j] {
            (i, j)
        } else {
            (j, i)
        };
        self.par[j] = i;
        self.size[i] += self.size[j];
    }
    pub fn same(&mut self, i: usize, j: usize) -> bool {
        self.find(i) == self.find(j)
    }
    pub fn get_size(&mut self, i: usize) -> usize {
        let p = self.find(i);
        self.size[p]
    }
}

#[derive(Debug, Clone)]
struct Edge {
    from: usize,
    to: usize,
    cost: i64,
}

fn minimum_spanning_tree(n: usize, edges: &Vec<Edge>) -> Option<Vec<Edge>> {
    let mut es = edges.clone();
    es.sort_by(|a, b| a.cost.cmp(&b.cost));
    let mut uf = UnionFind::new(n);
    let result = es
        .into_iter()
        .filter(|e| {
            if !uf.same(e.from, e.to) {
                uf.unite(e.from, e.to);
                true
            } else {
                false
            }
        })
        .collect::<Vec<_>>();
    if result.len() == n - 1 {
        Some(result)
    } else {
        assert!(result.len() < n - 1);
        None
    }
}

fn dfs(g: &Vec<Vec<Edge>>, i: usize, p: usize, size: &mut Vec<usize>) {
    size[i] = 1;
    for e in &g[i] {
        if e.to != p {
            dfs(g, e.to, i, size);
            size[i] += size[e.to];
        }
    }
}

fn main() {
    let stdin = std::io::stdin();
    let mut rd = ProconReader::new(stdin.lock());

    let n: usize = rd.get();
    let m: usize = rd.get();
    let x: usize = rd.get();
    let mut edges = vec![];
    for _ in 0..m {
        let u: usize = rd.get();
        let v: usize = rd.get();
        let w: i64 = rd.get();
        edges.push(Edge {
            from: u - 1,
            to: v - 1,
            cost: w,
        });
    }
    let tree_edges = minimum_spanning_tree(n, &edges).unwrap();
    let mut g = vec![vec![]; n];
    for e in &tree_edges {
        g[e.from].push(e.clone());
        g[e.to].push(Edge {
            from: e.to,
            to: e.from,
            ..*e
        });
    }
    let mut size = vec![0; n];
    dfs(&g, 0, !0, &mut size);
    let mo = 1_000_000_000 + 7;
    let mut ans = Mint::zero(mo);
    for i in 0..n {
        for e in &g[i] {
            if size[e.to] < size[i] {
                ans = ans
                    + Mint::new(size[e.to] * (n - size[e.to]), mo)
                        * Mint::new(x, mo).pow(e.cost as usize);
            }
        }
    }
    println!("{}", ans);
}
0