結果
| 問題 |
No.269 見栄っ張りの募金活動
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-03 17:04:06 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 23 ms / 5,000 ms |
| コード長 | 2,424 bytes |
| コンパイル時間 | 17,289 ms |
| コンパイル使用メモリ | 401,596 KB |
| 実行使用メモリ | 17,920 KB |
| 最終ジャッジ日時 | 2024-10-10 19:33:03 |
| 合計ジャッジ時間 | 15,660 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
コンパイルメッセージ
warning: unnecessary parentheses around `for` iterator expression
--> src/main.rs:81:14
|
81 | for i in (1..=N) {
| ^ ^
|
= note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
|
81 - for i in (1..=N) {
81 + for i in 1..=N {
|
warning: unnecessary parentheses around `for` iterator expression
--> src/main.rs:82:18
|
82 | for j in (0..=(S as usize)) {
| ^ ^
|
help: remove these parentheses
|
82 - for j in (0..=(S as usize)) {
82 + for j in 0..=(S as usize) {
|
warning: constant `DXY` is never used
--> src/main.rs:62:7
|
62 | const DXY: [(isize, isize); 4] = [(0, 1), (0, -1), (1, 0), (-1, 0)];
| ^^^
|
= note: `#[warn(dead_code)]` on by default
warning: constant `FIRST_VALUE` is never used
--> src/main.rs:63:7
|
63 | const FIRST_VALUE: usize = 1_000_000_000;
| ^^^^^^^^^^^
ソースコード
#[allow(non_snake_case)]
macro_rules! input {
(source = $s:expr, $($r:tt)*) => {
let mut iter = $s.split_whitespace();
let mut next = || { iter.next().unwrap() };
input_inner!{next, $($r)*}
};
($($r:tt)*) => {
let stdin = std::io::stdin();
let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
let mut next = move || -> String{
bytes
.by_ref()
.map(|r|r.unwrap() as char)
.skip_while(|c|c.is_whitespace())
.take_while(|c|!c.is_whitespace())
.collect()
};
input_inner!{next, $($r)*}
};
}
macro_rules! input_inner {
($next:expr) => {};
($next:expr, ) => {};
($next:expr, $var:ident : $t:tt $($r:tt)*) => {
let $var = read_value!($next, $t);
input_inner!{$next $($r)*}
};
}
macro_rules! read_value {
($next:expr, ( $($t:tt),* )) => {
( $(read_value!($next, $t)),* )
};
($next:expr, [ $t:tt ; $len:expr ]) => {
(0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
};
($next:expr, chars) => {
read_value!($next, String).chars().collect::<Vec<char>>()
};
($next:expr, usize1) => {
read_value!($next, usize) - 1
};
($next:expr, $t:ty) => {
$next().parse::<$t>().expect("Parse error")
};
}
// input!マクロ 複数個所には記述しない
#[allow(unused_imports)]
use std::{
cmp::Reverse,
cmp::{max, min},
collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, VecDeque},
process::exit,
};
const DXY: [(isize, isize); 4] = [(0, 1), (0, -1), (1, 0), (-1, 0)];
const FIRST_VALUE: usize = 1_000_000_000;
const MOD: usize = 1_000_000_007;
#[allow(non_snake_case)]
fn main() {
input! {
N: usize,
S: isize,
K: usize,
}
let S = S - (K * N * (N - 1) / 2) as isize;
if S < 0 {
println!("0");
exit(0);
}
let mut dp = vec![vec![0; S as usize + 1]; N + 1];
// dp[i][j] := jをi分割するときの総数
dp[0][0] = 1;
for i in (1..=N) {
for j in (0..=(S as usize)) {
if j >= i {
dp[i][j] = dp[i - 1][j] + dp[i][j - i];
dp[i][j] %= MOD;
} else {
dp[i][j] = dp[i - 1][j];
}
}
}
println!("{}", dp[N][S as usize]);
}