結果
問題 | No.1623 三角形の制作 |
ユーザー | phspls |
提出日時 | 2022-10-25 00:09:54 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 373 ms / 2,000 ms |
コード長 | 1,609 bytes |
コンパイル時間 | 12,112 ms |
コンパイル使用メモリ | 379,896 KB |
実行使用メモリ | 150,272 KB |
最終ジャッジ日時 | 2024-07-03 02:39:43 |
合計ジャッジ時間 | 22,217 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 348 ms
142,848 KB |
testcase_01 | AC | 346 ms
142,848 KB |
testcase_02 | AC | 352 ms
147,072 KB |
testcase_03 | AC | 367 ms
146,816 KB |
testcase_04 | AC | 359 ms
146,816 KB |
testcase_05 | AC | 368 ms
150,144 KB |
testcase_06 | AC | 343 ms
143,872 KB |
testcase_07 | AC | 352 ms
146,816 KB |
testcase_08 | AC | 356 ms
144,000 KB |
testcase_09 | AC | 369 ms
146,560 KB |
testcase_10 | AC | 373 ms
148,864 KB |
testcase_11 | AC | 363 ms
147,456 KB |
testcase_12 | AC | 355 ms
145,152 KB |
testcase_13 | AC | 353 ms
145,664 KB |
testcase_14 | AC | 349 ms
145,536 KB |
testcase_15 | AC | 368 ms
149,888 KB |
testcase_16 | AC | 360 ms
149,888 KB |
testcase_17 | AC | 358 ms
150,016 KB |
testcase_18 | AC | 363 ms
150,272 KB |
testcase_19 | AC | 346 ms
146,304 KB |
testcase_20 | AC | 353 ms
142,976 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
ソースコード
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 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 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 b: Vec<usize> = b.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let mut gcnts = vec![0usize; MAXVAL+1]; let mut bcnts = vec![0usize; MAXVAL+1]; let mut sum2max = vec![vec![0usize; MAXVAL+1]; 2*MAXVAL+1]; for &v in g.iter() { gcnts[v] += 1; } for &v in b.iter() { bcnts[v] += 1; } for i in 0..=MAXVAL { for j in 0..=MAXVAL { sum2max[i+j][i.max(j)] += gcnts[i] * bcnts[j]; } } for sumval in 0..=2*MAXVAL { for maxval in 0..=MAXVAL { if sumval > 0 { sum2max[sumval][maxval] += sum2max[sumval-1][maxval]; } if maxval > 0 { sum2max[sumval][maxval] += sum2max[sumval][maxval-1]; } if sumval > 0 && maxval > 0 { sum2max[sumval][maxval] -= sum2max[sumval-1][maxval-1]; } } } let mut result = 0usize; for &v in r.iter() { result += sum2max[2*v][v] - sum2max[v][v]; } println!("{}", result); }