結果
| 問題 |
No.430 文字列検索
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-24 04:25:52 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 140 ms / 2,000 ms |
| コード長 | 5,391 bytes |
| コンパイル時間 | 11,331 ms |
| コンパイル使用メモリ | 406,756 KB |
| 実行使用メモリ | 18,048 KB |
| 最終ジャッジ日時 | 2024-11-10 00:34:34 |
| 合計ジャッジ時間 | 12,896 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
コンパイルメッセージ
warning: unused import: `std::io::BufRead`
--> src/main.rs:2:5
|
2 | use std::io::BufRead;
| ^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: unused imports: `Add`, `Div`, `Mul`, `Sub`
--> src/main.rs:4:16
|
4 | use std::ops::{Add, Div, Mul, Sub};
| ^^^ ^^^ ^^^ ^^^
warning: function `read` is never used
--> src/main.rs:22:4
|
22 | fn read<T: FromStr>() -> T {
| ^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: static `MOD` is never used
--> src/main.rs:144:8
|
144 | static MOD: i64 = 1_000_000_007;
| ^^^
ソースコード
use std::fmt::Debug;
use std::io::BufRead;
use std::io::{stdin, Read};
use std::ops::{Add, Div, Mul, Sub};
use std::str::FromStr;
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Rev<T>(pub T);
impl<T: PartialOrd> PartialOrd for Rev<T> {
fn partial_cmp(&self, other: &Rev<T>) -> Option<std::cmp::Ordering> {
other.0.partial_cmp(&self.0)
}
}
impl<T: Ord> Ord for Rev<T> {
fn cmp(&self, other: &Rev<T>) -> std::cmp::Ordering {
other.0.cmp(&self.0)
}
}
fn read<T: FromStr>() -> T {
let stdin = stdin();
let stdin = stdin.lock();
let token: String = stdin
.bytes()
.map(|c| c.expect("failed to read char") as char)
.skip_while(|c| c.is_whitespace())
.take_while(|c| !c.is_whitespace())
.collect();
token.parse().ok().expect("failed to parse token")
}
macro_rules! read {
(($($t:tt),*)) => {
( $(read!($t)),* )
};
([[$t:tt; $len1:expr]; $len2:expr]) => {
(0..$len2).map(|_| read!([$t; $len1])).collect::<Vec<_>>()
};
([$t:tt; $len:expr]) => {
(0..$len).map(|_| read!($t)).collect::<Vec<_>>()
};
(chars) => {
read!(String).chars().collect::<Vec<char>>()
};
(usize1) => {
read!(usize) - 1
};
($t:ty) => {{
let stdin = stdin();
let stdin = stdin.lock();
let token: String = stdin
.bytes()
.map(|c| c.unwrap() as char)
.skip_while(|c| c.is_whitespace())
.take_while(|c| !c.is_whitespace())
.collect();
token.parse::<$t>().unwrap()
}};
}
macro_rules! input {
(mut $name:ident: $t:tt, $($r:tt)*) => {
let mut $name = read!($t);
input!($($r)*);
};
(mut $name:ident: $t:tt) => {
let mut $name = read!($t);
};
($name:ident: $t:tt, $($r:tt)*) => {
let $name = read!($t);
input!($($r)*);
};
($name:ident: $t:tt) => {
let $name = read!($t);
};
}
trait VecExt {
fn cumulation(&self) -> Vec<i64>;
fn cumulation_query(&self, a: &usize, b: &usize) -> i64;
}
impl VecExt for Vec<i64> {
fn cumulation(&self) -> Vec<i64> {
let mut vec = vec![0; self.len() + 1];
for i in 0..self.len() {
vec[i + 1] = self[i] + vec[i];
}
return vec;
}
fn cumulation_query(&self, left: &usize, right: &usize) -> i64 {
return self[*right] - self[*left];
}
}
trait SliceExt<T> {
fn lower_bound(&self, x: &T) -> usize;
fn upper_bound(&self, x: &T) -> usize;
}
impl<T: Ord> SliceExt<T> for [T] {
fn lower_bound(&self, x: &T) -> usize {
let mut ng = -1;
let mut ok = self.len() as i64;
while (ok - ng).abs() > 1 {
let mid = (ok + ng) / 2;
if self[mid as usize] >= *x {
ok = mid;
} else {
ng = mid;
}
}
return ok as usize;
}
fn upper_bound(&self, x: &T) -> usize {
let mut ng = -1;
let mut ok = self.len() as i64;
while (ok - ng).abs() > 1 {
let mid = (ok + ng) / 2;
if self[mid as usize] > *x {
ok = mid;
} else {
ng = mid;
}
}
return ok as usize;
}
}
static MOD: i64 = 1_000_000_007;
struct RollingHash2 {
rh1: RollingHash,
rh2: RollingHash,
}
impl RollingHash2 {
fn new(s: &Vec<i64>) -> Self {
let (rh1, rh2) = RollingHash::create_recommended_pair(&s);
RollingHash2 { rh1: rh1, rh2: rh2 }
}
fn get(&self, l: usize, r: usize) -> (i64, i64) {
(self.rh1.get(l, r), self.rh2.get(l, r))
}
}
struct RollingHash {
modulo: i64,
power: Vec<i64>,
hash: Vec<i64>,
}
impl RollingHash {
fn create_recommended_pair(s: &Vec<i64>) -> (Self, Self) {
(
RollingHash::new(&s, 1009, 1_000_000_007),
RollingHash::new(&s, 1007, 1_000_000_009),
)
}
fn new(s: &Vec<i64>, base: i64, modulo: i64) -> Self {
let n = s.len();
let mut power = vec![1; n + 1];
let mut hash = vec![0; n + 1];
for i in 0..n {
power[i + 1] = power[i] * base % modulo;
hash[i + 1] = (hash[i] * base + s[i]) % modulo;
}
RollingHash {
modulo: modulo,
power: power,
hash: hash,
}
}
fn get(&self, l: usize, r: usize) -> i64 {
(self.hash[r] + self.modulo - (self.hash[l] * self.power[r - l]) % self.modulo)
% self.modulo
}
}
fn main() {
input!(s: String, m: usize);
use std::collections::BTreeMap;
let svec: Vec<i64> = s.chars().map(|c| c as i64).collect();
let mut map: BTreeMap<(i64, i64,), i64> = BTreeMap::new();
let rh = RollingHash2::new(&svec);
let mut ans = 0i64;
for i in 0..s.len() {
for j in i..std::cmp::min(i + 10, s.len()) {
let hash = rh.get(i, j + 1);
let count = map.entry(hash).or_insert(0);
*count += 1;
}
}
for _ in 0..m {
input!(c: String);
let cvec: Vec<i64> = c.chars().map(|c| c as i64).collect();
let crh = RollingHash2::new(&cvec);
let h = crh.get(0, c.len());
if map.contains_key(&h) {
ans += map[&h];
}
}
println!("{}", ans);
}