Submission #9446955


Source Code Expand

//! ----------------------------------------------
//! Framework <https://github.com/vain0x/procon>
//!
//! See the bottom of file for solution.
//! ----------------------------------------------

#![allow(unused_imports)]
#![allow(non_snake_case)]

use std::cell::RefCell;
use std::cmp::{max, min, Ordering};
use std::collections::*;
use std::fmt::{Debug, Display, Formatter, Write as FmtWrite};
use std::io::{stderr, stdin, BufRead, Write};
use std::mem::{replace, swap};
use std::ops::*;
use std::rc::Rc;

/// Print values to standard error if debug mode.
#[allow(unused_macros)]
macro_rules! debug {
    ($($e:expr),*) => {
        #[cfg(debug_assertions)]
        $({
            let (e, mut err) = (stringify!($e), stderr());
            writeln!(err, "\x1B[33m{}\x1B[0m = {:?}", e, $e).unwrap()
        })*
    };
}

/// Read from standard input and parse each word.
/// - `read!(T, U, ..)` parses a line as a tuple of words.
/// - `read![[T]]` parses a line as an array of words.
/// - `read![..; N]` parses `N` lines, using `read!(..)` repeatedly.
#[allow(unused_macros)]
macro_rules! read {
    ([$t:ty] ; $n:expr) =>
        ((0..$n).map(|_| read!([$t])).collect::<Vec<_>>());
    ($($t:ty),+ ; $n:expr) =>
        ((0..$n).map(|_| read!($($t),+)).collect::<Vec<_>>());
    ([$t:ty]) =>
        (rl().split_whitespace().map(|w| w.parse().unwrap()).collect::<Vec<$t>>());
    ($($t:ty),*) => {{
        let buf = rl();
        let mut w = buf.split_whitespace();
        ($(w.next().unwrap().parse::<$t>().unwrap()),*)
    }};
}

/// Read a line from standard input.
#[allow(dead_code)]
fn rl() -> String {
    let mut buf = String::new();
    stdin().read_line(&mut buf).unwrap();

    #[allow(deprecated)]
    buf.trim_right().to_owned()
}

// -----------------------------------------------
// Solution
// -----------------------------------------------

fn main() {
    let (N, K, M) = read!(usize, i64, usize);
    let A = read![[i64]];

    // (ΣA + X) / N >= M
    // <=> X >= N * M - ΣA

    let NM = (N * M) as i64;
    let S = A.iter().sum::<i64>();
    let X = max(NM - S, 0);

    if X <= K {
        println!("{}", X)
    } else {
        println!("-1")
    }
}

Submission Info

Submission Time
Task B - Achieve the Goal
User vain0
Language Rust (1.15.1)
Score 200
Code Size 2267 Byte
Status AC
Exec Time 2 ms
Memory 4352 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 26
Set Name Test Cases
Sample sample_01, sample_02, sample_03
All hand_01, hand_02, hand_03, hand_04, max_01, max_02, max_03, min_01, random_01, random_02, random_03, random_04, random_05, random_06, random_07, random_08, random_09, random_10, random_11, random_12, random_13, random_14, random_15, sample_01, sample_02, sample_03
Case Name Status Exec Time Memory
hand_01 AC 2 ms 4352 KiB
hand_02 AC 2 ms 4352 KiB
hand_03 AC 2 ms 4352 KiB
hand_04 AC 2 ms 4352 KiB
max_01 AC 2 ms 4352 KiB
max_02 AC 2 ms 4352 KiB
max_03 AC 2 ms 4352 KiB
min_01 AC 2 ms 4352 KiB
random_01 AC 2 ms 4352 KiB
random_02 AC 2 ms 4352 KiB
random_03 AC 2 ms 4352 KiB
random_04 AC 2 ms 4352 KiB
random_05 AC 2 ms 4352 KiB
random_06 AC 2 ms 4352 KiB
random_07 AC 2 ms 4352 KiB
random_08 AC 2 ms 4352 KiB
random_09 AC 2 ms 4352 KiB
random_10 AC 2 ms 4352 KiB
random_11 AC 2 ms 4352 KiB
random_12 AC 2 ms 4352 KiB
random_13 AC 2 ms 4352 KiB
random_14 AC 2 ms 4352 KiB
random_15 AC 2 ms 4352 KiB
sample_01 AC 2 ms 4352 KiB
sample_02 AC 2 ms 4352 KiB
sample_03 AC 2 ms 4352 KiB