結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | yuppe19 😺 |
提出日時 | 2015-09-10 22:36:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 777 bytes |
コンパイル時間 | 332 ms |
コンパイル使用メモリ | 53,076 KB |
最終ジャッジ日時 | 2024-11-14 19:10:45 |
合計ジャッジ時間 | 726 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int f(int, int)’: main.cpp:12:3: error: ‘vector’ was not declared in this scope 12 | vector<vector<i64>> dp(k+1, vector<i64>(n+1)); | ^~~~~~ main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’? 2 | #include <algorithm> +++ |+#include <vector> 3 | using namespace std; main.cpp:12:20: error: expected primary-expression before ‘>>’ token 12 | vector<vector<i64>> dp(k+1, vector<i64>(n+1)); | ^~ main.cpp:12:41: error: expected primary-expression before ‘>’ token 12 | vector<vector<i64>> dp(k+1, vector<i64>(n+1)); | ^ main.cpp:12:23: error: ‘dp’ was not declared in this scope 12 | vector<vector<i64>> dp(k+1, vector<i64>(n+1)); | ^~ main.cpp: In function ‘int main()’: main.cpp:23:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | int n, s, k; scanf("%d%d%d", &n, &s, &k); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <algorithm> using namespace std; using i64 = long long; class range {private: struct I{int x;int operator*(){return x;}bool operator!=(I& lhs){return x<lhs.x;}void operator++(){++x;}};I i,n; public:range(int n):i({0}),n({n}){}range(int i,int n):i({i}),n({n}){}I& begin(){return i;}I& end(){return n;}}; const int mod = int(1e9) + 7; int f(int n, int k) { vector<vector<i64>> dp(k+1, vector<i64>(n+1)); dp[0][0] = 1; for(int i : range(1, k+1)) { for(int j : range(n+1)) { dp[i][j] = dp[i-1][j] + (j >= i ? dp[i][j-i] : 0) % mod; } } return dp[k][n] % mod; } int main(void) { int n, s, k; scanf("%d%d%d", &n, &s, &k); int x = s - n * (n-1) / 2 * k; int res = x>=0 ? f(x, n) : 0; printf("%d\n", res); return 0; }