結果
問題 | No.702 中央値を求めよ LIMITED |
ユーザー | ノロケ・ウイルス |
提出日時 | 2018-06-16 00:07:16 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 690 ms / 5,000 ms |
コード長 | 2,115 bytes |
コンパイル時間 | 12,734 ms |
コンパイル使用メモリ | 378,976 KB |
実行使用メモリ | 30,976 KB |
最終ジャッジ日時 | 2024-11-07 06:04:12 |
合計ジャッジ時間 | 32,847 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 679 ms
30,720 KB |
testcase_01 | AC | 678 ms
30,720 KB |
testcase_02 | AC | 677 ms
30,720 KB |
testcase_03 | AC | 675 ms
30,720 KB |
testcase_04 | AC | 683 ms
30,592 KB |
testcase_05 | AC | 683 ms
30,720 KB |
testcase_06 | AC | 671 ms
30,720 KB |
testcase_07 | AC | 669 ms
30,848 KB |
testcase_08 | AC | 676 ms
30,720 KB |
testcase_09 | AC | 678 ms
30,720 KB |
testcase_10 | AC | 673 ms
30,720 KB |
testcase_11 | AC | 670 ms
30,592 KB |
testcase_12 | AC | 675 ms
30,848 KB |
testcase_13 | AC | 688 ms
30,848 KB |
testcase_14 | AC | 690 ms
30,720 KB |
testcase_15 | AC | 675 ms
30,592 KB |
testcase_16 | AC | 672 ms
30,720 KB |
testcase_17 | AC | 687 ms
30,720 KB |
testcase_18 | AC | 673 ms
30,720 KB |
testcase_19 | AC | 685 ms
30,720 KB |
testcase_20 | AC | 667 ms
30,720 KB |
testcase_21 | AC | 674 ms
30,720 KB |
testcase_22 | AC | 682 ms
30,720 KB |
testcase_23 | AC | 685 ms
30,720 KB |
testcase_24 | AC | 677 ms
30,848 KB |
testcase_25 | AC | 672 ms
30,976 KB |
testcase_26 | AC | 662 ms
30,720 KB |
ソースコード
use std::io::{Read, stdin}; use std::cmp::{max, min}; struct XorShift { x: u32, y: u32, z: u32, w: u32 } impl XorShift { fn new(seed: u32) -> XorShift { XorShift{ x: seed, y: 1, z: 2, w: 3 } } fn generate(&mut self) -> u32 { let t = self.x ^ (self.x << 11); self.x = self.y; self.y = self.z; self.z = self.w; self.w = (self.w ^ (self.w >> 19)) ^ (t ^ (t >> 8)); self.w } } fn main() { let mut buf = String::new(); stdin().read_to_string(&mut buf).unwrap(); let mut tok = buf.split_whitespace(); let mut get = || tok.next().unwrap(); macro_rules! get { ($t:ty) => (get().parse::<$t>().unwrap()); () => (get!(i64)); } let n = 10_000_001; let seed = get!(u32); let mut rand = XorShift::new(seed); let mut max_value = 0; let mut min_value = std::u32::MAX; for _ in 0..n { let x = rand.generate(); max_value = max(max_value, x); min_value = min(min_value, x); } let div_line = (n + 1) / 2; let mid_value = (max_value - min_value) / 2 + min_value; let mut less_count = 0; let mut more_count = 0; rand = XorShift::new(seed); for _ in 0..n { let x = rand.generate(); if min_value <= x && x < mid_value { less_count += 1; } else if mid_value <= x && x <= max_value { more_count += 1; } } let mut arr = vec![]; if div_line <= less_count { rand = XorShift::new(seed); for _ in 0..n { let x = rand.generate(); if min_value <= x && x < mid_value { arr.push(x); } } arr.sort(); println!("{}", arr[div_line as usize - 1]); } else if div_line <= more_count { rand = XorShift::new(seed); for _ in 0..n { let x = rand.generate(); if mid_value <= x && x <= max_value { arr.push(x); } } arr.sort(); arr.reverse(); println!("{}", arr[div_line as usize - 1]); } }