結果

問題 No.475 最終日 - Writerの怠慢
ユーザー hatoohatoo
提出日時 2017-10-19 13:27:14
言語 Rust
(1.77.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 3,057 bytes
コンパイル時間 3,761 ms
コンパイル使用メモリ 148,228 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-13 12:39:48
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 11 ms
4,380 KB
testcase_05 AC 11 ms
4,384 KB
testcase_06 AC 11 ms
4,380 KB
testcase_07 AC 11 ms
4,384 KB
testcase_08 AC 11 ms
4,380 KB
testcase_09 AC 11 ms
4,380 KB
testcase_10 AC 11 ms
4,380 KB
testcase_11 AC 12 ms
4,384 KB
testcase_12 AC 5 ms
4,380 KB
testcase_13 AC 10 ms
4,380 KB
testcase_14 AC 1 ms
4,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `x`
   --> Main.rs:115:20
    |
115 |         .map(|(r, &x)| {
    |                    ^ help: if this is intentional, prefix it with an underscore: `_x`
    |
    = note: `#[warn(unused_variables)]` on by default

warning: 1 warning emitted

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::{max, min, Ordering, Reverse};
#[allow(unused_imports)]
use std::collections::{HashMap, HashSet};

mod util {
    use std::io::stdin;
    use std::str::FromStr;
    use std::fmt::Debug;

    #[allow(dead_code)]
    pub fn line() -> String {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        line.trim().to_string()
    }

    #[allow(dead_code)]
    pub fn get<T: FromStr>() -> T
    where
        <T as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        line.trim().parse().unwrap()
    }

    #[allow(dead_code)]
    pub fn gets<T: FromStr>() -> Vec<T>
    where
        <T as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        line.split_whitespace()
            .map(|t| t.parse().unwrap())
            .collect()
    }

    #[allow(dead_code)]
    pub fn get2<T: FromStr, U: FromStr>() -> (T, U)
    where
        <T as FromStr>::Err: Debug,
        <U as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
        )
    }

    #[allow(dead_code)]
    pub fn get3<S: FromStr, T: FromStr, U: FromStr>() -> (S, T, U)
    where
        <S as FromStr>::Err: Debug,
        <T as FromStr>::Err: Debug,
        <U as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
        )
    }
}

// std::cmp::Reverse doesn't have Clone.
#[derive(Eq, PartialEq, Clone)]
struct Rev<T>(pub T);

impl<T: PartialOrd> PartialOrd for Rev<T> {
    fn partial_cmp(&self, other: &Rev<T>) -> Option<Ordering> {
        other.0.partial_cmp(&self.0)
    }
}

impl<T: Ord> Ord for Rev<T> {
    fn cmp(&self, other: &Rev<T>) -> Ordering {
        other.0.cmp(&self.0)
    }
}

#[allow(unused_macros)]
macro_rules! debug {
    ($x: expr) => {
        println!("{}: {:?}", stringify!($x), $x)
    }
}


fn score(s: usize, rank: usize) -> usize {
    let rhs = 500 * s / (8 + 2 * rank);
    50 * s + rhs
}

fn main() {
    let (n, s, id): (usize, usize, usize) = util::get3();
    let mut a: Vec<usize> = util::gets();

    let me = a[id] + 100 * s;
    a.remove(id);
    a.sort();

    let m = n - 1;

    let mut i = 0;
    let ans = a.iter()
        .enumerate()
        .map(|(r, &x)| {
            while i < m && a[i] + score(s, r + 1) <= me {
                i += 1;
            }

            max(0, i as i64 - (r as i64)) as f64 / (m - r) as f64
        })
        .fold(1.0, |a, b| a * b);

    println!("{}", ans);

}
0