結果
問題 | No.1290 Addition and Subtraction Operation |
ユーザー |
|
提出日時 | 2021-11-18 23:55:19 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 2,874 bytes |
コンパイル時間 | 14,421 ms |
コンパイル使用メモリ | 387,116 KB |
実行使用メモリ | 6,656 KB |
最終ジャッジ日時 | 2024-12-27 23:59:40 |
合計ジャッジ時間 | 19,337 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 85 |
ソースコード
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8macro_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"));}/*** Union-Find tree.* Verified by https://atcoder.jp/contests/pakencamp-2019-day3/submissions/9253305*/struct UnionFind { disj: Vec<usize>, rank: Vec<usize> }impl UnionFind {fn new(n: usize) -> Self {let disj = (0..n).collect();UnionFind { disj: disj, rank: vec![1; n] }}fn root(&mut self, x: usize) -> usize {if x != self.disj[x] {let par = self.disj[x];let r = self.root(par);self.disj[x] = r;}self.disj[x]}fn unite(&mut self, x: usize, y: usize) {let mut x = self.root(x);let mut y = self.root(y);if x == y { return }if self.rank[x] > self.rank[y] {std::mem::swap(&mut x, &mut y);}self.disj[x] = y;self.rank[y] += self.rank[x];}#[allow(unused)]fn is_same_set(&mut self, x: usize, y: usize) -> bool {self.root(x) == self.root(y)}#[allow(unused)]fn size(&mut self, x: usize) -> usize {let x = self.root(x);self.rank[x]}}// https://yukicoder.me/problems/no/1290 (3)// 奇数番目を -1 倍して imos 法。fn main() {input! {n: usize, m: usize,b: [i64; n],lr: [(usize1, usize); m],}let mut b = b;for i in 0..n {if i % 2 == 1 {b[i] = -b[i];}}let mut c = vec![0; n + 1];c[0] = b[0];for i in 1..n {c[i] = b[i] - b[i - 1];}c[n] = -b[n - 1];let mut uf = UnionFind::new(n + 1);for (l, r) in lr {uf.unite(l, r);}let mut tot = vec![0; n + 1];for i in 0..n + 1 {tot[uf.root(i)] += c[i];}println!("{}", if tot.iter().all(|&x| x == 0) { "YES" } else { "NO" });}