結果
問題 | No.995 タピオカオイシクナーレ |
ユーザー | akiradeveloper |
提出日時 | 2020-02-21 22:52:12 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 8,840 bytes |
コンパイル時間 | 12,082 ms |
コンパイル使用メモリ | 378,168 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 23:30:58 |
合計ジャッジ時間 | 13,553 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
コンパイルメッセージ
warning: method `add` is never used --> src/main.rs:160:8 | 153 | impl CumSum1 { | ------------ method in this implementation ... 160 | fn add(&mut self, i: usize, x: i64) { | ^^^ | = note: `#[warn(dead_code)]` on by default warning: variable `Pk` should have a snake case name --> src/main.rs:132:9 | 132 | let Pk = ak * half + half; | ^^ help: convert the identifier to snake case: `pk` | = note: `#[warn(non_snake_case)]` on by default warning: variable `notPk` should have a snake case name --> src/main.rs:134:13 | 134 | let mut notPk: Mod = 1.into(); | ^^^^^ help: convert the identifier to snake case: `not_pk` warning: unused `Result` that must be used --> src/main.rs:147:5 | 147 | writeln!(out,"{}",tot); | ^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default = note: this warning originates in the macro `writeln` (in Nightly builds, run with -Z macro-backtrace for more info)
ソースコード
#[doc = " https://github.com/hatoo/competitive-rust-snippets"] #[allow(unused_imports)] use std::cmp::{max, min, Ordering}; #[allow(unused_imports)] use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, VecDeque}; #[allow(unused_imports)] use std::iter::FromIterator; #[macro_export] macro_rules ! chmax { ( $ x : expr , $ ( $ v : expr ) ,+ ) => { $ ( $ x = std :: cmp :: max ( $ x ,$ v ) ; ) + } ; } #[macro_export] macro_rules ! chmin { ( $ x : expr , $ ( $ v : expr ) ,+ ) => { $ ( $ x = std :: cmp :: min ( $ x ,$ v ) ; ) + } ; } #[macro_export] macro_rules ! max { ( $ x : expr ) => ( $ x ) ; ( $ x : expr , $ ( $ xs : expr ) ,+ ) => { std :: cmp :: max ( $ x , max ! ( $ ( $ xs ) ,+ ) ) } ; } #[macro_export] macro_rules ! min { ( $ x : expr ) => ( $ x ) ; ( $ x : expr , $ ( $ xs : expr ) ,+ ) => { std :: cmp :: min ( $ x , min ! ( $ ( $ xs ) ,+ ) ) } ; } #[macro_export] macro_rules ! dvec { ( $ t : expr ; $ len : expr ) => { vec ! [ $ t ; $ len ] } ; ( $ t : expr ; $ len : expr , $ ( $ rest : expr ) ,* ) => { vec ! [ dvec ! ( $ t ; $ ( $ rest ) ,* ) ; $ len ] } ; } #[doc = " main"] #[allow(unused_imports)] use std::io::{stdin, stdout, BufWriter, Write}; #[macro_export] macro_rules ! input { ( source = $ s : expr , $ ( $ r : tt ) * ) => { let mut parser = Parser :: from_str ( $ s ) ; input_inner ! { parser , $ ( $ r ) * } } ; ( parser = $ parser : ident , $ ( $ r : tt ) * ) => { input_inner ! { $ parser , $ ( $ r ) * } } ; ( new_stdin_parser = $ parser : ident , $ ( $ r : tt ) * ) => { let stdin = std :: io :: stdin ( ) ; let reader = std :: io :: BufReader :: new ( stdin . lock ( ) ) ; let mut $ parser = Parser :: new ( reader ) ; input_inner ! { $ parser , $ ( $ r ) * } } ; ( $ ( $ r : tt ) * ) => { input ! { new_stdin_parser = parser , $ ( $ r ) * } } ; } #[macro_export] macro_rules ! input_inner { ( $ parser : ident ) => { } ; ( $ parser : ident , ) => { } ; ( $ parser : ident , $ var : ident : $ t : tt $ ( $ r : tt ) * ) => { let $ var = read_value ! ( $ parser , $ t ) ; input_inner ! { $ parser $ ( $ r ) * } } ; } #[macro_export] macro_rules ! read_value { ( $ parser : ident , ( $ ( $ t : tt ) ,* ) ) => { ( $ ( read_value ! ( $ parser , $ t ) ) ,* ) } ; ( $ parser : ident , [ $ t : tt ; $ len : expr ] ) => { ( 0 ..$ len ) . map ( | _ | read_value ! ( $ parser , $ t ) ) . collect ::< Vec < _ >> ( ) } ; ( $ parser : ident , chars ) => { read_value ! ( $ parser , String ) . chars ( ) . collect ::< Vec < char >> ( ) } ; ( $ parser : ident , usize1 ) => { read_value ! ( $ parser , usize ) - 1 } ; ( $ parser : ident , $ t : ty ) => { $ parser . next ::<$ t > ( ) . expect ( "Parse error" ) } ; } use std::io; use std::io::BufRead; use std::str; pub struct Parser<R> { reader: R, buf: Vec<u8>, pos: usize, } impl Parser<io::Empty> { pub fn from_str(s: &str) -> Parser<io::Empty> { Parser { reader: io::empty(), buf: s.as_bytes().to_vec(), pos: 0, } } } impl<R: BufRead> Parser<R> { pub fn new(reader: R) -> Parser<R> { Parser { reader: reader, buf: vec![], pos: 0, } } pub fn update_buf(&mut self) { self.buf.clear(); self.pos = 0; loop { let (len, complete) = { let buf2 = self.reader.fill_buf().unwrap(); self.buf.extend_from_slice(buf2); let len = buf2.len(); if len == 0 { break; } (len, buf2[len - 1] <= 0x20) }; self.reader.consume(len); if complete { break; } } } pub fn next<T: str::FromStr>(&mut self) -> Result<T, T::Err> { loop { let mut begin = self.pos; while begin < self.buf.len() && (self.buf[begin] <= 0x20) { begin += 1; } let mut end = begin; while end < self.buf.len() && (self.buf[end] > 0x20) { end += 1; } if begin != self.buf.len() { self.pos = end; return str::from_utf8(&self.buf[begin..end]).unwrap().parse::<T>(); } else { self.update_buf(); } } } } #[allow(unused_macros)] macro_rules ! debug { ( $ ( $ a : expr ) ,* ) => { eprintln ! ( concat ! ( $ ( stringify ! ( $ a ) , " = {:?}, " ) ,* ) , $ ( $ a ) ,* ) ; } } #[doc = " https://github.com/hatoo/competitive-rust-snippets"] const BIG_STACK_SIZE: bool = true; #[allow(dead_code)] fn main() { use std::thread; if BIG_STACK_SIZE { thread::Builder::new() .stack_size(32 * 1024 * 1024) .name("solve".into()) .spawn(solve) .unwrap() .join() .unwrap(); } else { solve(); } } fn solve() { let out = stdout(); let mut out = BufWriter::new(out.lock()); input!{ n:usize,m:usize,k:i64,p:i64,q:i64, b:[i64;n] } // dbg!(&b); let p: Mod = p.into(); let q: Mod = q.into(); let z = p/q; // let aa: Mod = 1.into(); // let bb: Mod = 4.into(); // dbg!(aa/bb); // find P(k) // P(K)-1/2 = (1-2z)(P[k-1]-1/2) let mut a: Mod = 1.into(); a -= z * 2; let ak = a.pow(k); let mut half: Mod = 1.into(); half /= 2; let Pk = ak * half + half; // dbg!(Pk); let mut notPk: Mod = 1.into(); notPk -= Pk; // dbg!(notPk); let mut cum = CumSum1::new(n); for i in 0..n { cum.set(i,b[i]); } cum.build(); let mut tot: Mod = 0.into(); tot += Pk * cum.query(0,m); tot += notPk * cum.query(m,n); writeln!(out,"{}",tot); } struct CumSum1 { base: Vec<i64>, dp: Vec<i64>, } impl CumSum1 { fn new(n: usize) -> CumSum1 { CumSum1 { base: vec![0; n], dp: vec![], } } fn add(&mut self, i: usize, x: i64) { self.base[i] += x; } fn set(&mut self, i: usize, x: i64) { self.base[i] = x; } fn build(&mut self) { let n = self.base.len(); let mut dp = vec![0; n + 1]; let mut acc = 0; for i in 0..n { acc += self.base[i]; dp[i + 1] = acc; } self.dp = dp; } #[doc = "[i,j)"] fn query(&self, i: usize, j: usize) -> i64 { self.dp[j] - self.dp[i] } } pub mod modular { const M: i64 = 1_000_000_007; #[derive(Debug, Clone, Copy, Default, PartialOrd, Ord, PartialEq, Eq)] pub struct Mod(pub i64); impl ::std::fmt::Display for Mod { fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { write!(f, "{}", self.0) } } impl Mod { pub fn new(v: i64) -> Mod { Mod((v + M) % M) } pub fn pow(self, mut r: i64) -> Mod { let mut k = self; let mut ret = 1.into(); while r > 0 { if r % 2 != 0 { ret = ret * k; } r /= 2; k = k * k; } ret } pub fn recip(self) -> Mod { self.pow(M - 2) } } use std::ops::*; impl<T: Into<Mod>> Add<T> for Mod { type Output = Mod; fn add(self, rhs: T) -> Self::Output { Mod::new(self.0 + rhs.into().0) } } impl<T: Into<Mod>> AddAssign<T> for Mod { fn add_assign(&mut self, rhs: T) { *self = *self + rhs; } } impl<T: Into<Mod>> Sub<T> for Mod { type Output = Mod; fn sub(self, rhs: T) -> Self::Output { Mod::new(self.0 - rhs.into().0 + M) } } impl<T: Into<Mod>> SubAssign<T> for Mod { fn sub_assign(&mut self, rhs: T) { *self = *self - rhs; } } impl<T: Into<Mod>> Mul<T> for Mod { type Output = Mod; fn mul(self, rhs: T) -> Self::Output { Mod::new(self.0 * rhs.into().0) } } impl<T: Into<Mod>> MulAssign<T> for Mod { fn mul_assign(&mut self, rhs: T) { *self = *self * rhs; } } impl<T: Into<Mod>> Div<T> for Mod { type Output = Mod; fn div(self, rhs: T) -> Self::Output { self * rhs.into().recip() } } impl<T: Into<Mod>> DivAssign<T> for Mod { fn div_assign(&mut self, rhs: T) { *self = *self / rhs; } } impl Neg for Mod { type Output = Mod; fn neg(self) -> Self::Output { Mod(0) - self } } impl<T: ::std::convert::Into<i64>> ::std::convert::From<T> for Mod { fn from(v: T) -> Self { Mod::new(v.into()) } } } pub type Mod = modular::Mod;