結果
問題 | No.1623 三角形の制作 |
ユーザー | phspls |
提出日時 | 2022-10-30 13:13:21 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 310 ms / 2,000 ms |
コード長 | 1,519 bytes |
コンパイル時間 | 17,615 ms |
コンパイル使用メモリ | 398,284 KB |
実行使用メモリ | 150,144 KB |
最終ジャッジ日時 | 2024-07-07 05:28:07 |
合計ジャッジ時間 | 19,869 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 200 ms
142,720 KB |
testcase_01 | AC | 198 ms
142,720 KB |
testcase_02 | AC | 292 ms
146,944 KB |
testcase_03 | AC | 308 ms
146,688 KB |
testcase_04 | AC | 296 ms
146,688 KB |
testcase_05 | AC | 310 ms
150,016 KB |
testcase_06 | AC | 282 ms
143,744 KB |
testcase_07 | AC | 292 ms
146,816 KB |
testcase_08 | AC | 280 ms
144,000 KB |
testcase_09 | AC | 291 ms
146,432 KB |
testcase_10 | AC | 301 ms
148,736 KB |
testcase_11 | AC | 295 ms
147,456 KB |
testcase_12 | AC | 207 ms
145,152 KB |
testcase_13 | AC | 215 ms
145,664 KB |
testcase_14 | AC | 206 ms
145,536 KB |
testcase_15 | AC | 218 ms
149,760 KB |
testcase_16 | AC | 219 ms
149,760 KB |
testcase_17 | AC | 218 ms
149,760 KB |
testcase_18 | AC | 224 ms
150,144 KB |
testcase_19 | AC | 205 ms
146,176 KB |
testcase_20 | AC | 200 ms
142,720 KB |
ソースコード
const LIMIT: 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 greens = vec![0usize; LIMIT+1]; let mut blues = vec![0usize; LIMIT+1]; for i in 0..n { greens[g[i]] += 1; blues[b[i]] += 1; } let mut maxsum = vec![vec![0usize; 2*LIMIT+1]; LIMIT+1]; for i in 0..=LIMIT { if greens[i] == 0 { continue; } for j in 0..=LIMIT { let maxval = i.max(j); let sumval = i+j; maxsum[maxval][sumval] += greens[i] * blues[j]; } } for i in 0..=LIMIT { for j in 0..=2*LIMIT { if i > 0 { maxsum[i][j] += maxsum[i-1][j]; } if j > 0 { maxsum[i][j] += maxsum[i][j-1]; } if i > 0 && j > 0 { maxsum[i][j] -= maxsum[i-1][j-1]; } } } let mut result = 0usize; for &v in r.iter() { result += maxsum[v][v*2] - maxsum[v][v]; } println!("{}", result); }