結果

問題 No.1023 Cyclic Tour
ユーザー koba-e964koba-e964
提出日時 2021-10-06 17:40:27
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 5,188 bytes
コンパイル時間 13,719 ms
コンパイル使用メモリ 391,824 KB
実行使用メモリ 28,128 KB
最終ジャッジ日時 2024-07-23 02:54:48
合計ジャッジ時間 24,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 115 ms
19,972 KB
testcase_05 AC 117 ms
20,096 KB
testcase_06 AC 133 ms
22,400 KB
testcase_07 AC 120 ms
21,248 KB
testcase_08 AC 78 ms
17,800 KB
testcase_09 AC 90 ms
17,312 KB
testcase_10 AC 76 ms
17,200 KB
testcase_11 AC 85 ms
18,136 KB
testcase_12 AC 71 ms
17,604 KB
testcase_13 AC 69 ms
16,700 KB
testcase_14 AC 69 ms
16,404 KB
testcase_15 AC 72 ms
16,912 KB
testcase_16 AC 132 ms
23,040 KB
testcase_17 AC 133 ms
23,216 KB
testcase_18 AC 139 ms
22,916 KB
testcase_19 AC 129 ms
22,424 KB
testcase_20 AC 174 ms
22,784 KB
testcase_21 AC 161 ms
23,316 KB
testcase_22 AC 146 ms
22,640 KB
testcase_23 AC 164 ms
22,692 KB
testcase_24 AC 150 ms
22,676 KB
testcase_25 AC 168 ms
22,844 KB
testcase_26 AC 166 ms
24,064 KB
testcase_27 AC 140 ms
23,340 KB
testcase_28 AC 127 ms
21,868 KB
testcase_29 AC 112 ms
21,300 KB
testcase_30 AC 142 ms
22,732 KB
testcase_31 AC 149 ms
22,968 KB
testcase_32 AC 135 ms
24,752 KB
testcase_33 AC 148 ms
24,212 KB
testcase_34 AC 146 ms
21,640 KB
testcase_35 AC 159 ms
23,168 KB
testcase_36 AC 146 ms
22,784 KB
testcase_37 AC 142 ms
24,372 KB
testcase_38 AC 117 ms
22,028 KB
testcase_39 AC 137 ms
21,980 KB
testcase_40 AC 138 ms
22,164 KB
testcase_41 AC 142 ms
22,180 KB
testcase_42 AC 161 ms
23,168 KB
testcase_43 AC 138 ms
20,980 KB
testcase_44 AC 108 ms
20,096 KB
testcase_45 AC 111 ms
28,128 KB
testcase_46 AC 111 ms
27,904 KB
testcase_47 AC 124 ms
27,776 KB
testcase_48 AC 114 ms
24,612 KB
testcase_49 AC 115 ms
24,696 KB
testcase_50 AC 110 ms
24,704 KB
testcase_51 AC 113 ms
24,676 KB
testcase_52 AC 118 ms
24,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, usize1) => (read_value!($next, usize) - 1);
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

// Strong connected components.
// Verified by: yukicoder No.470 (http://yukicoder.me/submissions/145785)
//              ABC214-H (https://atcoder.jp/contests/abc214/submissions/25082618)
struct SCC {
    n: usize,
    ncc: usize,
    g: Vec<Vec<usize>>, // graph in adjacent list
    rg: Vec<Vec<usize>>, // reverse graph
    cmp: Vec<usize>, // topological order
}

impl SCC {
    fn new(n: usize) -> Self {
        SCC {
            n: n,
            ncc: n + 1,
            g: vec![Vec::new(); n],
            rg: vec![Vec::new(); n],
            cmp: vec![0; n],
        }
    }
    fn add_edge(&mut self, from: usize, to: usize) {
        self.g[from].push(to);
        self.rg[to].push(from);
    }
    fn dfs(&self, v: usize, used: &mut [bool], vs: &mut Vec<usize>) {
        used[v] = true;
        for &w in self.g[v].iter() {
            if !used[w] {
               self.dfs(w, used, vs);
            }
        }
        vs.push(v);
    }
    fn rdfs(&self, v: usize, k: usize,
            used: &mut [bool], cmp: &mut [usize]) {
        used[v] = true;
        cmp[v] = k;
        for &w in self.rg[v].iter() {
            if !used[w] {
                self.rdfs(w, k, used, cmp);
            }
        }
    }
    fn scc(&mut self) -> usize {
        let n = self.n;
        let mut used = vec![false; n];
        let mut vs = Vec::new();
        let mut cmp = vec![0; n];
        for v in 0 .. n {
            if !used[v] { self.dfs(v, &mut used, &mut vs); }
        }
        for u in used.iter_mut() {
            *u = false;
        }
        let mut k = 0;
        for &t in vs.iter().rev() {
            if !used[t] { self.rdfs(t, k, &mut used, &mut cmp); k += 1; }
        }
        self.ncc = k;
        self.cmp = cmp;
        k
    }
    #[allow(dead_code)]
    fn top_order(&self) -> Vec<usize> {
        assert!(self.ncc <= self.n);
        self.cmp.clone()
    }
    /*
     * Returns a dag whose vertices are scc's, and whose edges are those of the original graph.
     */
    #[allow(dead_code)]
    fn dag(&self) -> Vec<Vec<usize>> {
        assert!(self.ncc <= self.n);
        let ncc = self.ncc;
        let mut ret = vec![vec![]; ncc];
        let n = self.n;
        for i in 0 .. n {
            for &to in self.g[i].iter() {
                if self.cmp[i] != self.cmp[to] {
                    assert!(self.cmp[i] < self.cmp[to]);
                    ret[self.cmp[i]].push(self.cmp[to]);
                }
            }
        }
        ret.into_iter().map(|mut v| {
            v.sort_unstable(); v.dedup();
            v
        }).collect()
    }
    #[allow(dead_code)]
    fn rdag(&self) -> Vec<Vec<usize>> {
        assert!(self.ncc <= self.n);
        let ncc = self.ncc;
        let mut ret = vec![vec![]; ncc];
        let n = self.n;
        for i in 0 .. n {
            for &to in self.g[i].iter() {
                if self.cmp[i] != self.cmp[to] {
                    assert!(self.cmp[i] < self.cmp[to]);
                    ret[self.cmp[to]].push(self.cmp[i]);
                }
            }
        }
        ret.into_iter().map(|mut v| {
            v.sort_unstable(); v.dedup();
            v
        }).collect()
    }
}

fn main() {
    // In order to avoid potential stack overflow, spawn a new thread.
    let stack_size = 104_857_600; // 100 MB
    let thd = std::thread::Builder::new().stack_size(stack_size);
    thd.spawn(|| solve()).unwrap().join().unwrap();
}

fn solve() {
    input! {
        n: usize, m: usize,
        abc: [(usize1, usize1, i32); m],
    }
    let mut scc = SCC::new(n);
    for &(a, b, c) in &abc {
        scc.add_edge(a, b);
        if c == 1 {
            scc.add_edge(b, a);
        }
    }
    let ncc = scc.scc();
    let top_ord = scc.top_order();
    let mut ne = vec![0; ncc];
    let mut nv = vec![0; ncc];
    for i in 0..n {
        nv[top_ord[i]] += 1;
    }
    for &(a, b, _) in &abc {
        if top_ord[a] == top_ord[b] {
            ne[top_ord[a]] += 1;
        }
    }
    for i in 0..ncc {
        if ne[i] >= nv[i] {
            println!("Yes");
            return;
        }
    }
    println!("No");
}
0