結果

問題 No.1623 三角形の制作
ユーザー phsplsphspls
提出日時 2022-10-24 02:02:20
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 1,764 bytes
コンパイル時間 12,237 ms
コンパイル使用メモリ 392,144 KB
実行使用メモリ 150,528 KB
最終ジャッジ日時 2024-07-02 12:57:18
合計ジャッジ時間 22,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
142,848 KB
testcase_01 AC 327 ms
142,848 KB
testcase_02 AC 364 ms
147,132 KB
testcase_03 AC 363 ms
146,904 KB
testcase_04 AC 355 ms
146,864 KB
testcase_05 AC 392 ms
150,204 KB
testcase_06 AC 335 ms
143,872 KB
testcase_07 AC 370 ms
146,928 KB
testcase_08 AC 332 ms
144,000 KB
testcase_09 AC 357 ms
146,636 KB
testcase_10 AC 385 ms
148,916 KB
testcase_11 AC 376 ms
147,604 KB
testcase_12 AC 337 ms
145,152 KB
testcase_13 AC 334 ms
145,664 KB
testcase_14 AC 337 ms
145,664 KB
testcase_15 AC 347 ms
149,888 KB
testcase_16 AC 343 ms
149,888 KB
testcase_17 AC 341 ms
149,888 KB
testcase_18 AC 346 ms
150,528 KB
testcase_19 AC 336 ms
146,176 KB
testcase_20 AC 329 ms
142,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `n`
 --> src/main.rs:7:9
  |
7 |     let n: usize = n.trim().parse().unwrap();
  |         ^ help: if this is intentional, prefix it with an underscore: `_n`
  |
  = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

const MAXVAL: usize = 3000;

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut r = String::new();
    std::io::stdin().read_line(&mut r).ok();
    let mut r: Vec<usize> = r.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut g = String::new();
    std::io::stdin().read_line(&mut g).ok();
    let mut g: Vec<usize> = g.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut b = String::new();
    std::io::stdin().read_line(&mut b).ok();
    let mut b: Vec<usize> = b.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    r.sort();
    g.sort();
    b.sort();
    let mut gcnts = vec![0usize; MAXVAL+1];
    let mut bcnts = vec![0usize; MAXVAL+1];
    for &v in g.iter() { gcnts[v] += 1; }
    for &v in b.iter() { bcnts[v] += 1; }
    let mut sum_max_dp = vec![vec![0usize; MAXVAL+1]; 2*MAXVAL+1];
    for i in 0..=MAXVAL {
        let gcnt = gcnts[i];
        for j in 0..=MAXVAL {
            let bcnt = bcnts[j];
            sum_max_dp[i+j][i.max(j)] += gcnt * bcnt;
        }
    }
    for sumval in 0..=2*MAXVAL {
        for maxval in 0..=MAXVAL {
            if sumval > 0 {
                sum_max_dp[sumval][maxval] += sum_max_dp[sumval-1][maxval];
            }
            if maxval > 0 {
                sum_max_dp[sumval][maxval] += sum_max_dp[sumval][maxval-1];
            }
            if sumval > 0 && maxval > 0 {
                sum_max_dp[sumval][maxval] -= sum_max_dp[sumval-1][maxval-1];
            }
        }
    }
    let mut result = 0usize;
    for &r in r.iter() {
        result += sum_max_dp[2*r][r];
        result -= sum_max_dp[r][r];
    }
    println!("{}", result);
}
0