結果
問題 | No.992 最長増加部分列の数え上げ |
ユーザー | akakimidori |
提出日時 | 2020-02-14 23:46:31 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,466 bytes |
コンパイル時間 | 12,646 ms |
コンパイル使用メモリ | 390,868 KB |
実行使用メモリ | 9,584 KB |
最終ジャッジ日時 | 2024-10-06 13:30:52 |
合計ジャッジ時間 | 16,678 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 56 ms
9,188 KB |
testcase_31 | AC | 58 ms
9,196 KB |
testcase_32 | AC | 59 ms
9,200 KB |
testcase_33 | AC | 59 ms
9,196 KB |
testcase_34 | AC | 58 ms
8,984 KB |
testcase_35 | AC | 49 ms
9,200 KB |
testcase_36 | AC | 50 ms
9,024 KB |
testcase_37 | AC | 48 ms
9,188 KB |
testcase_38 | AC | 48 ms
9,112 KB |
testcase_39 | AC | 46 ms
9,280 KB |
testcase_40 | AC | 58 ms
8,940 KB |
testcase_41 | AC | 59 ms
8,880 KB |
testcase_42 | AC | 60 ms
8,884 KB |
testcase_43 | AC | 60 ms
9,100 KB |
testcase_44 | AC | 59 ms
8,968 KB |
ソースコード
use std::io::Read; use std::cmp::Ordering; use std::ops::*; #[derive(Clone, Copy)] struct MaxCnt(usize, u64); impl Add for MaxCnt { type Output = Self; fn add(self, rhs: Self) -> Self::Output { match self.0.cmp(&rhs.0) { Ordering::Less => rhs, Ordering::Greater => self, Ordering::Equal => MaxCnt(self.0, self.1 + rhs.1), } } } fn add(bit: &mut [MaxCnt], x: usize, v: MaxCnt) { let mut i = x; while i < bit.len() { bit[i] = bit[i] + v; i += i & (!i + 1); } } fn sum(bit: &[MaxCnt], x: usize) -> MaxCnt { let mut ans = MaxCnt(0, 1); let mut i = x; while i > 0 { ans = ans + bit[i]; i -= i & (!i + 1); } ans } fn run() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); let mut it = s.trim().split_whitespace(); let n: usize = it.next().unwrap().parse().unwrap(); let a: Vec<i32> = it.map(|s| s.parse().unwrap()).collect(); assert!(a.len() == n); let mut b = a.clone(); b.push(-1_000_000_000 - 1); b.sort(); b.dedup(); let a: Vec<usize> = a.into_iter().map(|a| b.binary_search(&a).unwrap()).collect(); let mut bit = vec![MaxCnt(0, 0); b.len()]; for a in a { let s = sum(&bit, a - 1); add(&mut bit, a, MaxCnt(s.0 + 1, s.1)); } let ans = sum(&bit, b.len() - 1).1 % 1_000_000_007; println!("{}", ans); } fn main() { run(); }