結果

問題 No.1226 I hate Robot Arms
ユーザー o2co2c
提出日時 2020-09-12 19:10:15
言語 Rust
(1.77.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 6,185 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 156,824 KB
実行使用メモリ 14,116 KB
最終ジャッジ日時 2023-08-30 18:37:19
合計ジャッジ時間 14,836 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 91 ms
4,380 KB
testcase_03 AC 110 ms
5,124 KB
testcase_04 AC 127 ms
13,552 KB
testcase_05 AC 116 ms
13,696 KB
testcase_06 AC 306 ms
13,868 KB
testcase_07 AC 82 ms
4,380 KB
testcase_08 AC 31 ms
13,488 KB
testcase_09 AC 198 ms
5,048 KB
testcase_10 AC 22 ms
4,380 KB
testcase_11 AC 143 ms
13,432 KB
testcase_12 AC 74 ms
7,948 KB
testcase_13 AC 56 ms
13,764 KB
testcase_14 AC 240 ms
5,276 KB
testcase_15 AC 20 ms
13,768 KB
testcase_16 AC 301 ms
13,860 KB
testcase_17 AC 74 ms
5,404 KB
testcase_18 AC 53 ms
5,344 KB
testcase_19 AC 150 ms
13,496 KB
testcase_20 AC 137 ms
13,564 KB
testcase_21 AC 183 ms
13,496 KB
testcase_22 AC 307 ms
14,056 KB
testcase_23 AC 311 ms
14,104 KB
testcase_24 AC 303 ms
14,116 KB
testcase_25 AC 309 ms
13,956 KB
testcase_26 AC 312 ms
14,108 KB
testcase_27 AC 350 ms
14,108 KB
testcase_28 AC 344 ms
14,032 KB
testcase_29 AC 360 ms
14,084 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable does not need to be mutable
   --> Main.rs:8:338
    |
8   | ...read {($($t :tt ) ,*;$n :expr ) =>{{let stdin =::std ::io ::stdin () ;let ret =::std ::io ::BufRead ::lines (stdin .lock () ) .take ($n ) .map (|line |{let line =line .unwrap () ;let mut it =line .split_whitespace () ;_read !(it ;$($t ) ,*) } ) .collect ::<Vec <_ >>() ;ret } } ;($($t :tt ) ,*) =>{{let line =readln () ;let mut it =l...
    |                                                                                                                                                                                                                                                                                                                                        ----^^
    |                                                                                                                                                                                                                                                                                                                                        |
    |                                                                                                                                                                                                                                                                                                                                        help: remove this `mut`
...
153 | ... = read!([usize]);
    |       -------------- in this macro invocation
    |
    = note: `#[warn(unused_mut)]` on by default
    = note: this warning originates in the macro `read` (in Nightly builds, run with -Z macro-backtrace for more info)

warning: 1 warning emitted

ソースコード

diff #

pub fn readln() -> String {
    let mut line = String::new();
    ::std::io::stdin()
        .read_line(&mut line)
        .unwrap_or_else(|e| panic!("{}", e));
    line
}
macro_rules !read {($($t :tt ) ,*;$n :expr ) =>{{let stdin =::std ::io ::stdin () ;let ret =::std ::io ::BufRead ::lines (stdin .lock () ) .take ($n ) .map (|line |{let line =line .unwrap () ;let mut it =line .split_whitespace () ;_read !(it ;$($t ) ,*) } ) .collect ::<Vec <_ >>() ;ret } } ;($($t :tt ) ,*) =>{{let line =readln () ;let mut it =line .split_whitespace () ;_read !(it ;$($t ) ,*) } } ;}
macro_rules !_read {($it :ident ;[char ] ) =>{_read !($it ;String ) .chars () .collect ::<Vec <_ >>() } ;($it :ident ;[u8 ] ) =>{Vec ::from (_read !($it ;String ) .into_bytes () ) } ;($it :ident ;usize1 ) =>{$it .next () .unwrap_or_else (||panic !("input mismatch" ) ) .parse ::<usize >() .unwrap_or_else (|e |panic !("{}" ,e ) ) -1 } ;($it :ident ;[usize1 ] ) =>{$it .map (|s |s .parse ::<usize >() .unwrap_or_else (|e |panic !("{}" ,e ) ) -1 ) .collect ::<Vec <_ >>() } ;($it :ident ;[$t :ty ] ) =>{$it .map (|s |s .parse ::<$t >() .unwrap_or_else (|e |panic !("{}" ,e ) ) ) .collect ::<Vec <_ >>() } ;($it :ident ;$t :ty ) =>{$it .next () .unwrap_or_else (||panic !("input mismatch" ) ) .parse ::<$t >() .unwrap_or_else (|e |panic !("{}" ,e ) ) } ;($it :ident ;$($t :tt ) ,+) =>{($(_read !($it ;$t ) ) ,*) } ;}

trait ME {
    type M: Clone;
    type E: Clone + PartialEq;
    fn id_m() -> Self::M;
    fn id_e() -> Self::E;
    fn id() -> (Self::M, Self::E) {
        (Self::id_m(), Self::id_e())
    }
    fn f(a: &Self::M, b: &Self::M) -> Self::M;
    fn g(a: &Self::M, b: &Self::E) -> Self::M;
    fn h(a: &Self::E, b: &Self::E) -> Self::E;
    fn p(a: &Self::E, k: usize) -> Self::E;
}

struct LazySegmentTree<T: ME> {
    width: usize,
    dat: Vec<(T::M, T::E)>,
}
#[allow(dead_code)]
impl<T: ME> LazySegmentTree<T> {
    fn new(n: usize) -> Self {
        let width = n.next_power_of_two();
        Self {
            width,
            dat: vec![T::id(); (width << 1) - 1],
        }
    }
    fn from_vec(a: &[T::M]) -> Self {
        let width = a.len().next_power_of_two();
        let mut dat = vec![T::id(); (width << 1) - 1];
        for i in 0..a.len() {
            dat[i + width - 1].0 = a[i].clone();
        }
        for i in (0..width - 1).rev() {
            dat[i].0 = T::f(&dat[(i << 1) + 1].0, &dat[(i << 1) + 2].0);
        }
        Self { width, dat }
    }
    fn __eval(&mut self, now: usize, k: usize) {
        let e = T::p(&self.dat[now].1, k);
        self.dat[now].0 = T::g(&self.dat[now].0, &e);
        if k > 1 {
            self.dat[(now << 1) + 1].1 = T::h(&self.dat[(now << 1) + 1].1, &self.dat[now].1);
            self.dat[(now << 1) + 2].1 = T::h(&self.dat[(now << 1) + 2].1, &self.dat[now].1);
        }
        self.dat[now].1 = T::id_e();
    }
    fn __update(&mut self, x: &T::E, now: usize, lc: usize, rc: usize, l: usize, r: usize) {
        self.__eval(now, rc - lc);
        if l <= lc && rc <= r {
            self.dat[now].1 = T::h(&self.dat[now].1, x);
            self.__eval(now, rc - lc);
        } else if l < rc && lc < r {
            self.__update(x, (now << 1) + 1, lc, (lc + rc) / 2, l, r);
            self.__update(x, (now << 1) + 2, (lc + rc) / 2, rc, l, r);
            self.dat[now].0 = T::f(&self.dat[(now << 1) + 1].0, &self.dat[(now << 1) + 2].0);
        }
    }
    fn update<R>(&mut self, range: R, x: &T::E)
    where
        R: std::ops::RangeBounds<usize>,
    {
        let l = match range.start_bound() {
            std::ops::Bound::Included(&a) => a,
            _ => 0,
        };
        let r = match range.end_bound() {
            std::ops::Bound::Excluded(&a) => a,
            std::ops::Bound::Included(&a) => a + 1,
            _ => self.width,
        };
        self.__update(x, 0, 0, self.width, l, r);
    }
    fn __prod(&mut self, now: usize, lc: usize, rc: usize, l: usize, r: usize) -> T::M {
        self.__eval(now, rc - lc);
        if rc <= l || r <= lc {
            T::id_m()
        } else if l <= lc && rc <= r {
            self.dat[now].0.clone()
        } else {
            T::f(
                &self.__prod((now << 1) + 1, lc, (lc + rc) >> 1, l, r),
                &self.__prod((now << 1) + 2, (lc + rc) >> 1, rc, l, r),
            )
        }
    }
    fn prod<R>(&mut self, range: R) -> T::M
    where
        R: std::ops::RangeBounds<usize>,
    {
        let l = match range.start_bound() {
            std::ops::Bound::Included(&a) => a,
            _ => 0,
        };
        let r = match range.end_bound() {
            std::ops::Bound::Excluded(&a) => a,
            std::ops::Bound::Included(&a) => a + 1,
            _ => self.width,
        };
        self.__prod(0, 0, self.width, l, r)
    }
}

struct Node;

impl ME for Node {
    type M = (f64, f64);
    type E = (Option<f64>, f64);
    fn id_m() -> Self::M {
        (0.0, 0.0)
    }
    fn id_e() -> Self::E {
        (None, 0.0)
    }
    fn f((x1, y1): &Self::M, (x2, y2): &Self::M) -> Self::M {
        (x1 + x2, y1 + y2)
    }
    fn g(a: &Self::M, (d, t): &Self::E) -> Self::M {
        let mut x = a.0;
        let mut y = a.1;
        if let Some(d) = d {
            let r = (x * x + y * y).sqrt();
            x *= d / r;
            y *= d / r;
        }
        let t = t.to_radians();
        (x * t.cos() - y * t.sin(), x * t.sin() + y * t.cos())
    }
    fn h(a: &Self::E, b: &Self::E) -> Self::E {
        let d = if b.0 == None { a.0 } else { b.0 };
        (d, a.1 + b.1)
    }
    fn p(a: &Self::E, _k: usize) -> Self::E {
        *a
    }
}

fn main() {
    let (n, q) = read!(usize, usize);
    let mut seg = LazySegmentTree::<Node>::from_vec(&vec![(1.0, 0.0); n]);
    let mut t = vec![0.0; n];
    for _ in 0..q {
        let p = read!([usize]);
        if p[0] == 0 {
            seg.update(p[1] - 1.., &(None, p[2] as f64 - t[p[1] - 1]));
            t[p[1] - 1] = p[2] as f64;
        } else if p[0] == 1 {
            seg.update(p[1] - 1..p[1], &(Some(p[2] as f64), 0.0));
        } else {
            let (x, y) = seg.prod(..p[1]);
            println!("{0:.8} {1:.8}", x, y);
        }
    }
}
0