結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー 👑 zeronosu77108zeronosu77108
提出日時 2023-08-04 22:17:14
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 4,123 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 171,392 KB
実行使用メモリ 25,852 KB
最終ジャッジ日時 2024-04-22 20:34:14
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 62 ms
12,692 KB
testcase_05 AC 138 ms
22,268 KB
testcase_06 AC 183 ms
23,268 KB
testcase_07 AC 76 ms
15,480 KB
testcase_08 AC 121 ms
17,440 KB
testcase_09 AC 166 ms
25,264 KB
testcase_10 AC 114 ms
25,304 KB
testcase_11 AC 126 ms
18,964 KB
testcase_12 AC 137 ms
25,852 KB
testcase_13 AC 140 ms
17,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 29 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 10 ms
5,376 KB
testcase_31 AC 25 ms
5,376 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::BTreeSet;

fn main() {
    let mut sc = Scanner::new();
    let n = sc.usize();
    let m = sc.usize();
    let edges = sc.edges(m);

    let mut in_cnt = vec![0; n];
    let mut out_cnt = vec![0; n];
    for &(a, b) in &edges {
        out_cnt[a] += 1;
        in_cnt[b] += 1;
    }
    // for i in 0..n { eprintln!("{} : {} {}", i, in_cnt[i], out_cnt[i]); }

    let mut ng = BTreeSet::new();
    for i in 0..n {
        if in_cnt[i] == out_cnt[i] { continue }
        ng.insert((in_cnt[i] - out_cnt[i], i));
    }
    eprintln!("{:?}", ng);


    let mut ans = 0;
    while ng.len() > 2 {
        let (max, i) = *ng.iter().next_back().unwrap();
        let (min, j) = *ng.iter().next().unwrap();

        if signum(max) == signum(min) { break }

        let diff = max.min(-min);
        ng.remove(&(max, i));
        ng.remove(&(min, j));
        out_cnt[i] += diff;
        in_cnt[j] += diff;
        ans += diff;

        if max > diff {
            if max - diff != 0 { ng.insert((max - diff, i)); }
        } else {
            if min + diff != 0 { ng.insert((min + diff, j)); }
        }
    }

    eprintln!("{:?}", ng);

    if ng.len() == 0 {
        println!("{}", ans);
    } else if ng.len() == 1 {
        let (c, _) = *ng.iter().next().unwrap();
        println!("{}", ans + 1.max(c));
    } else if ng.len() == 2 {
        let (max, _) = *ng.iter().next_back().unwrap();
        let (min, _) = *ng.iter().next().unwrap();
        if signum(max) == signum(min) {
            println!("{}", ans + max.abs() + min.abs());
        } else {
            if max == -min { println!("{}", ans + max.abs() - 1); }
            else {
                let diff = max.min(-min);
                let m = max.max(-min);
                println!("{}", ans + diff + (m - diff));
            }
        }
    } else {
        unreachable!();
    }
}

fn signum(x: i64) -> i64 {
    if x == 0 { 0 } else if x > 0 { 1 } else { -1 }
}


struct Scanner { s : std::collections::VecDeque<String> } #[allow(unused)] impl Scanner { fn new() -> Self { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); Self { s : s.split_whitespace().map(|s| s.to_string()).collect() } } fn reload(&mut self) -> () { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); self.s = s.split_whitespace().map(|s| s.to_string()).collect(); } fn usize(&mut self) -> usize { self.input() } fn usize1(&mut self) -> usize { self.input::<usize>() - 1 } fn isize(&mut self) -> isize { self.input() } fn i32(&mut self) -> i32 { self.input() } fn i64(&mut self) -> i64 { self.input() } fn i128(&mut self) -> i128 { self.input() } fn u8(&mut self) -> u8 { self.input() } fn u32(&mut self) -> u32 { self.input() } fn u64(&mut self) -> u64 { self.input() } fn u128(&mut self) -> u128 { self.input() } fn edge(&mut self) -> (usize, usize) { (self.usize1(), self.usize1()) } fn edges(&mut self, m : usize) -> Vec<(usize, usize)> { let mut e = Vec::with_capacity(m); for _ in 0..m { e.push(self.edge()); } e } fn wedge<T:std::str::FromStr>(&mut self) -> (usize, usize, T) { (self.usize1(), self.usize1(), self.input()) } fn wedges<T:std::str::FromStr>(&mut self, m : usize) -> Vec<(usize, usize, T)> { let mut e = Vec::with_capacity(m); for _ in 0..m { e.push(self.wedge()); } e } fn input<T>(&mut self) -> T where T: std::str::FromStr { if self.s.is_empty() { self.reload(); } if let Some(head) = self.s.pop_front() { head.parse::<T>().ok().unwrap() } else { panic!() } } fn tuple<T, U>(&mut self) -> (T, U) where T: std::str::FromStr, U: std::str::FromStr { (self.input(), self.input()) } fn vec<T>(&mut self, n: usize) -> Vec<T> where T: std::str::FromStr { if self.s.is_empty() { self.reload(); } self.s.drain(..n).map(|s| s.parse::<T>().ok().unwrap() ).collect::<Vec<T>>() } fn nvec<T>(&mut self) -> Vec<T> where T: std::str::FromStr { let n : usize = self.input(); self.vec(n) } fn chars(&mut self) -> Vec<char> { let s : String = self.input(); s.chars().collect() } fn bytes(&mut self) -> Vec<u8> { let s : String = self.input(); s.bytes().collect() } }
0