結果
問題 | No.382 シャイな人たち (2) |
ユーザー | akakimidori |
提出日時 | 2020-05-13 21:37:19 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,608 bytes |
コンパイル時間 | 21,812 ms |
コンパイル使用メモリ | 380,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-14 15:40:20 |
合計ジャッジ時間 | 46,839 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,692 ms
5,248 KB |
testcase_01 | AC | 1,727 ms
5,248 KB |
testcase_02 | AC | 1,386 ms
5,376 KB |
testcase_03 | AC | 1,503 ms
5,376 KB |
testcase_04 | AC | 1,363 ms
5,376 KB |
testcase_05 | AC | 1,565 ms
5,376 KB |
testcase_06 | AC | 1,129 ms
5,376 KB |
testcase_07 | AC | 1,604 ms
5,376 KB |
testcase_08 | AC | 1,193 ms
5,376 KB |
testcase_09 | AC | 1,334 ms
5,376 KB |
testcase_10 | AC | 1,325 ms
5,376 KB |
testcase_11 | AC | 1,129 ms
5,376 KB |
testcase_12 | AC | 1,441 ms
5,376 KB |
testcase_13 | AC | 1,414 ms
5,376 KB |
testcase_14 | AC | 1,635 ms
5,376 KB |
testcase_15 | AC | 1,629 ms
5,376 KB |
testcase_16 | AC | 1,344 ms
5,376 KB |
testcase_17 | AC | 1,241 ms
5,376 KB |
testcase_18 | AC | 1,546 ms
5,376 KB |
testcase_19 | AC | 1,335 ms
5,376 KB |
testcase_20 | WA | - |
ソースコード
// 以下の提出を多大に参考にしている // https://yukicoder.me/submissions/471192 type BIT = u128; struct Graph { size: usize, edge: Vec<BIT>, } impl Graph { fn new(size: usize) -> Self { assert!(std::mem::size_of::<BIT>() * 8 >= size); Graph { size: size, edge: (0..size).map(|x| (1 as BIT) << x as BIT).collect(), } } fn add_edge(&mut self, s: usize, t: usize) { assert!(s != t); self.edge[s] |= (1 as BIT) << t as BIT; self.edge[t] |= (1 as BIT) << s as BIT; } fn rec(&self, rem: BIT) -> Vec<usize> { if rem == 0 { return vec![]; } let mut max_deg = (0, 0); let mut bit = rem; while bit > 0 { let x = bit & (!bit + 1); bit -= x; let x = x.trailing_zeros() as usize; let deg = (self.edge[x] & rem).count_ones(); if deg <= 2 { let mut ans = self.rec(rem & !self.edge[x]); ans.push(x); return ans; } max_deg = std::cmp::max(max_deg, (deg, x)); } let v = max_deg.1; let mut ans = self.rec(rem & !self.edge[v]); ans.push(v); if max_deg.0 <= 3 { return ans; } let q = self.rec(rem & !((1 as BIT) << v as BIT)); if q.len() > ans.len() { q } else { ans } } fn solve(&self) -> Vec<usize> { let mask = if self.size == std::mem::size_of::<BIT>() * 8 { !0 } else { ((1 as BIT) << self.size as BIT) - 1 }; self.rec(mask) } } struct RNG { s: usize } impl RNG { fn new(seed: usize) -> Self { RNG { s: seed, } } fn next(&mut self) -> usize { self.s = self.s * 12345 % 1000003; self.s } } fn run() { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); let mut rng = RNG::new(s.trim().parse().unwrap()); let n: usize = rng.next() % 120 + 2; let mut graph = Graph::new(n); let p = rng.next(); for i in 1..=n { for j in (i + 1)..=n { let e = rng.next(); if e >= p { graph.add_edge(i - 1, j - 1); } } } let ans = graph.solve(); let mut out = String::new(); out.push_str(&format!("{}\n", ans.len() + 1)); for a in ans { out.push_str(&format!("{} ", a + 1)); } out.pop(); println!("{}", out); } fn main() { run(); }