結果

問題 No.1036 Make One With GCD 2
ユーザー akakimidoriakakimidori
提出日時 2021-02-03 21:02:32
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 2,970 bytes
コンパイル時間 13,695 ms
コンパイル使用メモリ 390,960 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-09-16 14:35:05
合計ジャッジ時間 19,049 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
15,616 KB
testcase_01 AC 137 ms
11,136 KB
testcase_02 AC 73 ms
31,232 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 34 ms
5,760 KB
testcase_08 AC 28 ms
5,376 KB
testcase_09 AC 100 ms
10,624 KB
testcase_10 AC 94 ms
9,856 KB
testcase_11 AC 102 ms
10,624 KB
testcase_12 AC 95 ms
9,856 KB
testcase_13 AC 166 ms
14,592 KB
testcase_14 AC 169 ms
14,592 KB
testcase_15 AC 158 ms
13,772 KB
testcase_16 AC 159 ms
13,824 KB
testcase_17 AC 164 ms
14,208 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 156 ms
13,588 KB
testcase_23 AC 115 ms
10,496 KB
testcase_24 AC 162 ms
14,080 KB
testcase_25 AC 148 ms
13,012 KB
testcase_26 AC 152 ms
13,456 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 66 ms
30,592 KB
testcase_39 AC 103 ms
15,104 KB
testcase_40 AC 115 ms
10,496 KB
testcase_41 AC 136 ms
15,232 KB
testcase_42 AC 135 ms
15,104 KB
testcase_43 AC 132 ms
19,200 KB
testcase_44 AC 134 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// ---------- begin Foldable Queue ----------
struct FoldableQueue<T, F> {
    front: Vec<(T, T)>,
    back: Vec<(T, T)>,
    op: F,
}

#[allow(dead_code)]
impl<T, F> FoldableQueue<T, F>
where T: Clone,
      F: Fn(&T, &T) -> T,
{
    fn new(op: F) -> Self {
        FoldableQueue {
            front: Vec::new(),
            back: Vec::new(),
            op: op,
        }
    }
    fn find(&self) -> Option<T> {
        match (self.front.last(), self.back.last()) {
            (Some(a), Some(b)) => Some((self.op)(&a.1, &b.1)),
            (Some(a), None) => Some(a.1.clone()),
            (None, Some(b)) => Some(b.1.clone()),
            (None, None) => None,
        }
    }
    fn clear(&mut self) {
        self.front.clear();
        self.back.clear();
    }
    fn len(&self) -> usize {
        self.front.len() + self.back.len()
    }
    fn push_back(&mut self, val: T) {
        let sum = if let Some(p) = self.back.last() {
            (self.op)(&p.1, &val)
        } else {
            val.clone()
        };
        self.back.push((val, sum));
    }
    fn push_front(&mut self, val: T) {
        let sum = if let Some(p) = self.front.last() {
            (self.op)(&val, &p.1)
        } else {
            val.clone()
        };
        self.front.push((val, sum));
    }
    fn pop_front(&mut self) -> Option<T> {
        if self.len() == 0 {
            return None;
        }
        if self.front.is_empty() {
            let mut a = std::mem::take(&mut self.back);
            for v in a.iter().rev() {
                self.push_front(v.0.clone());
            }
            a.clear();
            self.back = a;
        }
        self.front.pop().map(|p| p.0)
    }
}
// ---------- end Foldable Queue ----------

use std::io::Read;

// ---------- begin binary_gcd ----------
pub fn gcd(a: u64, b: u64) -> u64 {
    if a == 0 || b == 0 {
        return a + b;
    }
    let x = a.trailing_zeros();
    let y = b.trailing_zeros();
    let mut a = a >> x;
    let mut b = b >> y;
    while a != b {
        let x = (a ^ b).trailing_zeros();
        if a < b {
            std::mem::swap(&mut a, &mut b);
        }
        a = (a - b) >> x;
    }
    a << x.min(y)
}
// ---------- end binary_gcd ----------


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<u64> = it.map(|s| s.parse().unwrap()).collect();
    let mut deq = FoldableQueue::new(|a, b| gcd(*a, *b));
    let mut ans = 0usize;
    let mut r = 0;
    for i in 0..n {
        if r == i {
            deq.push_back(a[r]);
            r += 1;
        }
        while r < n && deq.find().unwrap() > 1 {
            deq.push_back(a[r]);
            r += 1;
        }
        if deq.find().unwrap() == 1 {
            ans += n + 1 - r;
        }
        deq.pop_front();
    }
    println!("{}", ans);
}

fn main() {
    run();
}
0