結果

問題 No.1502 Many Simple Additions
ユーザー koba-e964koba-e964
提出日時 2023-08-29 10:11:31
言語 Rust
(1.77.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 3,262 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 160,684 KB
実行使用メモリ 19,148 KB
最終ジャッジ日時 2023-08-29 10:11:35
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,384 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 85 ms
15,812 KB
testcase_28 AC 86 ms
16,144 KB
testcase_29 AC 8 ms
6,116 KB
testcase_30 AC 134 ms
19,120 KB
testcase_31 AC 131 ms
19,052 KB
testcase_32 AC 125 ms
19,148 KB
testcase_33 AC 90 ms
13,032 KB
testcase_34 AC 98 ms
15,404 KB
testcase_35 AC 98 ms
13,380 KB
testcase_36 AC 58 ms
8,060 KB
testcase_37 AC 58 ms
8,028 KB
testcase_38 AC 74 ms
12,440 KB
testcase_39 AC 46 ms
6,324 KB
testcase_40 AC 23 ms
5,416 KB
testcase_41 AC 5 ms
4,380 KB
testcase_42 AC 108 ms
15,772 KB
testcase_43 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::*;
// 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"));
}

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();
}

const MOD: i64 = 1_000_000_007;

fn dfs(
    v: usize, g: &[Vec<(usize, i64)>], k: i64,
    vis: &mut [bool], eq: &mut Vec<i64>, pot: &mut [(i64, i64)],
    p: (i64, i64),
) -> (i64, i64) {
    let (mut lo, mut hi) = if p.0 == 1 {
        (1 - p.1, k - p.1)
    } else {
        (p.1 - k, p.1 - 1)
    };
    if vis[v] {
        if pot[v].0 == p.0 {
            return if pot[v].1 == p.1 {
                (lo, hi)
            } else {
                (1, 0) // contradiction
            };
        }
        eq.push((p.1 - pot[v].1) * 2 / (pot[v].0 - p.0));
        return (lo, hi);
    }
    vis[v] = true;
    pot[v] = p;
    for &(w, c) in &g[v] {
        let (sublo, subhi) = dfs(w, g, k, vis, eq, pot, (-p.0, c - p.1));
        lo = max(lo, sublo);
        hi = min(hi, subhi);
    }
    (lo, hi)
}

fn calc(n: usize, xyz: &[(usize, usize, i64)], k: i64) -> i64 {
    let mut g = vec![vec![]; n];
    for &(x, y, z) in xyz {
        g[x].push((y, z));
        g[y].push((x, z));
    }
    let mut vis = vec![false; n];
    let mut ans = 1;
    let mut pot = vec![(0, 0); n];
    for i in 0..n {
        let mut eq = vec![];
        if !vis[i] {
            let (mi, ma) = dfs(i, &g, k, &mut vis, &mut eq, &mut pot, (1, 0));
            eq.dedup();
            if mi > ma || eq.len() >= 2 {
                return 0;
            }
            if eq.len() == 1 {
                let x = eq[0];
                if x % 2 != 0 || mi > x / 2 || x / 2 > ma {
                    return 0;
                }
            } else {
                ans = ans * (ma - mi + 1) % MOD;
            }
        }
    }
    ans
}

// https://yukicoder.me/problems/no/1502 (3.5)
// <= k に変換すれば DFS で制約を見つけるだけになる。
fn solve() {
    input! {
        n: usize, m: usize, k: i64,
        xyz: [(usize1, usize1, i64); m],
    }
    println!("{}", (calc(n, &xyz, k) - calc(n, &xyz, k - 1) + MOD) % MOD);
}
0