結果

問題 No.1951 消えたAGCT(2)
ユーザー akakimidoriakakimidori
提出日時 2022-05-20 23:35:30
言語 Rust
(1.72.1)
結果
AC  
実行時間 83 ms / 3,000 ms
コード長 3,848 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 183,136 KB
実行使用メモリ 4,844 KB
最終ジャッジ日時 2023-10-20 14:31:41
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 0 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 0 ms
4,348 KB
testcase_08 AC 15 ms
4,844 KB
testcase_09 AC 15 ms
4,844 KB
testcase_10 AC 15 ms
4,844 KB
testcase_11 AC 17 ms
4,844 KB
testcase_12 AC 11 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 71 ms
4,516 KB
testcase_15 AC 55 ms
4,348 KB
testcase_16 AC 60 ms
4,348 KB
testcase_17 AC 76 ms
4,844 KB
testcase_18 AC 79 ms
4,844 KB
testcase_19 AC 82 ms
4,844 KB
testcase_20 AC 79 ms
4,844 KB
testcase_21 AC 17 ms
4,844 KB
testcase_22 AC 16 ms
4,844 KB
testcase_23 AC 16 ms
4,844 KB
testcase_24 AC 16 ms
4,844 KB
testcase_25 AC 15 ms
4,844 KB
testcase_26 AC 83 ms
4,844 KB
testcase_27 AC 78 ms
4,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn run() {
    input! {
        n: usize,
        s: bytes,
    }
    const K: usize = 26;
    let s = s.into_iter().map(|s| s - b'A').collect::<Vec<_>>();
    let mut bit = Fenwick::new(n, 0i32);
    let mut cnt = [0; K];
    for i in 0..n {
        cnt[s[i] as usize] += 1;
        bit.add(i + 1, 1);
    }
    let agct = "AGCT".bytes().map(|c| (c - b'A') as usize).collect::<Vec<_>>();
    let mut add = 0;
    let mut ans = 0;
    while agct.iter().any(|p| cnt[(*p + K - add) % K] > 0) {
        ans += 1;
        let sum = agct.iter().map(|p| cnt[(*p + K - add) % K]).sum::<usize>();
        let pos = bit.search(sum as i32) ;
        cnt[s[pos - 1] as usize] -= 1;
        bit.add(pos, -1);
        add = (add + cnt[s[pos - 1] as usize]) % K
    }
    println!("{}", ans);
}

fn main() {
    run();
}

// 1-indexedなBIT
// 座標xへの加算、[1,x]の和, ([1,x]の和)>=s となる最小のxの探索
// ---------- begin fenwick tree ----------
pub struct Fenwick<T> {
    zero: T,
    a: Box<[T]>,
}

impl<T> Fenwick<T>
where
    T: Copy + std::ops::Add<Output = T>,
{
    pub fn new(size: usize, zero: T) -> Fenwick<T> {
        Fenwick {
            zero: zero,
            a: vec![zero; size + 1].into_boxed_slice(),
        }
    }
    pub fn init(&mut self) {
        for a in self.a.iter_mut() {
            *a = self.zero;
        }
    }
    pub fn add(&mut self, mut x: usize, v: T) {
        assert!(x > 0);
        while let Some(a) = self.a.get_mut(x) {
            *a = *a + v;
            x += x & (!x + 1);
        }
    }
    pub fn sum(&self, mut x: usize) -> T {
        assert!(x < self.a.len());
        let mut res = self.zero;
        while x > 0 {
            res = res + self.a[x];
            x -= x & (!x + 1);
        }
        res
    }
}

impl<T> Fenwick<T>
where
    T: Copy + std::ops::Add<Output = T> + PartialOrd,
{
    pub fn search(&self, s: T) -> usize {
        debug_assert!(self.sum(self.a.len() - 1) >= s);
        let mut k = 1;
        while 2 * k < self.a.len() {
            k *= 2;
        }
        let mut x = 0;
        let mut w = self.zero;
        while k > 0 {
            self.a.get(x + k).map(|a| {
                if w + *a < s {
                    w = w + *a;
                    x += k;
                }
            });
            k >>= 1;
        }
        x + 1
    }
}
// ---------- end fenwick tree ----------
// ---------- begin input macro ----------
// reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
#[macro_export]
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}

#[macro_export]
macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}

#[macro_export]
macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, bytes) => {
        read_value!($iter, String).bytes().collect::<Vec<u8>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}
// ---------- end input macro ----------
0