結果
| 問題 |
No.1031 いたずら好きなお姉ちゃん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-26 03:01:57 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 76 ms / 3,500 ms |
| コード長 | 5,790 bytes |
| コンパイル時間 | 25,993 ms |
| コンパイル使用メモリ | 378,324 KB |
| 実行使用メモリ | 20,096 KB |
| 最終ジャッジ日時 | 2024-11-08 20:09:26 |
| 合計ジャッジ時間 | 29,996 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 53 |
ソースコード
#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::{Write, BufWriter};
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_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, chars) => {
read_value!($next, String).chars().collect::<Vec<char>>()
};
($next:expr, usize1) => {
read_value!($next, usize) - 1
};
($next:expr, [ $t:tt ]) => {{
let len = read_value!($next, usize);
(0..len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
}};
($next:expr, $t:ty) => {
$next().parse::<$t>().expect("Parse error")
};
}
#[allow(unused)]
macro_rules! debug {
($($format:tt)*) => (write!(std::io::stderr(), $($format)*).unwrap());
}
#[allow(unused)]
macro_rules! debugln {
($($format:tt)*) => (writeln!(std::io::stderr(), $($format)*).unwrap());
}
/**
* Sparse Table.
* BiOp should be the type of a binary operator which is
* associative, commutative and idempotent.
* (For example, both min and gcd satisfy these properties.)
* Verified by: AtCoder CODE FESTIVAL 2016 Tournament Round 3 (Parallel) B
* (http://cf16-tournament-round3-open.contest.atcoder.jp/submissions/1026294)
*/
struct SparseTable<T, BiOp> {
biop: BiOp,
st: Vec<Vec<T>>,
}
impl<T, BiOp> SparseTable<T, BiOp>
where BiOp: Fn(T, T) -> T,
T: Copy {
pub fn new(ary: &[T], biop: BiOp) -> Self {
let n = ary.len();
let mut h = 1;
while 1 << h < n {
h += 1;
}
let mut st: Vec<Vec<T>> = vec![Vec::from(ary); h + 1];
for i in 0 .. n {
st[0][i] = ary[i];
}
for b in 1 .. (h + 1) {
if n + 1 < 1 << b {
break;
}
for i in 0 .. (n + 1 - (1 << b)) {
let next_idx = (1 << (b - 1)) + i;
st[b][i] = biop(st[b - 1][i], st[b - 1][next_idx]);
}
}
SparseTable {biop: biop, st: st}
}
fn top_bit(t: usize) -> usize {
let mut h = 0;
while 1 << h <= t {
h += 1;
}
h - 1
}
pub fn query(&self, f: usize, s: usize) -> T {
assert!(f <= s);
let b = Self::top_bit(s + 1 - f);
let endpoint = s + 1 - (1 << b);
(self.biop)(self.st[b][f], self.st[b][endpoint])
}
}
fn solve() {
let out = std::io::stdout();
let mut out = BufWriter::new(out.lock());
macro_rules! puts {
($($format:tt)*) => (let _ = write!(out,$($format)*););
}
input! {
n: usize,
p: [usize; n],
}
let mut tot = 0i64;
let spt = SparseTable::new(&p, min);
let mut lohi = vec![(0, 0); n];
for i in 0..n {
let mut fail = n;
let mut pass = i;
while fail - pass > 1 {
let mid = (pass + fail) / 2;
if spt.query(i, mid) < p[i] {
fail = mid;
} else {
pass = mid;
}
}
let hi = pass;
// bias: -1
fail = 0;
pass = i + 1;
while pass - fail > 1 {
let mid = (pass + fail) / 2;
if spt.query(mid - 1, i) < p[i] {
fail = mid;
} else {
pass = mid;
}
}
let lo = pass - 1;
lohi[i] = (lo, hi);
}
let mut st: Vec<(usize, usize)> = vec![];
// left -> right
for i in 0..n {
let lo = lohi[i].0;
while let Some(x) = st.pop() {
if x.0 > p[i] {
st.push(x);
break;
}
}
// binsect bias = -1
let mut pass = st.len() + 1;
let mut fail = 0;
while pass - fail > 1 {
let mid = (pass + fail) / 2;
if st[mid - 1].1 >= lo {
pass = mid;
} else {
fail = mid;
}
}
tot += (st.len() + 1 - pass) as i64;
st.push((p[i], i));
}
// right -> left
st.clear();
for i in (0..n).rev() {
let hi = lohi[i].1;
while let Some(x) = st.pop() {
if x.0 > p[i] {
st.push(x);
break;
}
}
// binsect bias = -1
let mut pass = st.len() + 1;
let mut fail = 0;
while pass - fail > 1 {
let mid = (pass + fail) / 2;
if st[mid - 1].1 <= hi {
pass = mid;
} else {
fail = mid;
}
}
tot += (st.len() + 1 - pass) as i64;
st.push((p[i], i));
}
puts!("{}\n", tot);
}
fn main() {
// In order to avoid potential stack overflow, spawn a new thread.
let stack_size = 104_857_600; // 100 MB
let thd = std::thread::Builder::new().stack_size(stack_size);
thd.spawn(|| solve()).unwrap().join().unwrap();
}