結果

問題 No.1708 Quality of Contest
ユーザー Yukino DX.Yukino DX.
提出日時 2024-08-13 10:57:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,147 bytes
コンパイル時間 22,663 ms
コンパイル使用メモリ 376,748 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-08-13 10:57:51
合計ジャッジ時間 15,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 34 ms
17,408 KB
testcase_10 AC 49 ms
16,792 KB
testcase_11 AC 51 ms
16,884 KB
testcase_12 AC 51 ms
16,768 KB
testcase_13 AC 51 ms
16,728 KB
testcase_14 AC 51 ms
16,900 KB
testcase_15 AC 50 ms
17,004 KB
testcase_16 AC 52 ms
17,004 KB
testcase_17 AC 48 ms
16,820 KB
testcase_18 AC 49 ms
16,700 KB
testcase_19 AC 50 ms
16,836 KB
testcase_20 AC 51 ms
16,828 KB
testcase_21 AC 52 ms
16,944 KB
testcase_22 AC 57 ms
16,772 KB
testcase_23 AC 56 ms
17,000 KB
testcase_24 AC 48 ms
16,436 KB
testcase_25 AC 49 ms
16,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{input, marker::Usize1};

fn main() {
    input! {
        n:usize,
        m:usize,
        x:usize,
        mut ab:[(usize,Usize1);n],
        k:usize,
        c:[usize;k],
    }

    ab.sort_by(|x, y| y.0.cmp(&x.0));

    let mut seq = vec![];
    let mut i = 0;
    let mut j = 0;
    let mut used = vec![false; m];
    let mut fin = vec![false; n];
    let mut scores = vec![0];

    while i < n {
        if j < n && ab[i].0 <= ab[j].0 + x {
            seq.push(j);
            fin[j] = true;
            used[ab[j].1] = true;

            let last_score = *scores.last().unwrap();
            scores.push(last_score + ab[j].0 + x);
            if i == j {
                i += 1;
            }
            while j < n && used[ab[j].1] {
                j += 1;
            }
        } else {
            seq.push(i);
            fin[i] = true;

            let last_score = *scores.last().unwrap();
            scores.push(last_score + ab[i].0);
            while i < n && fin[i] {
                i += 1;
            }
        }
    }

    let ans = c.iter().map(|&ci| scores[ci]).sum::<usize>();
    println!("{}", ans);
}
0