結果
問題 |
No.8046 yukicoderの過去問
|
ユーザー |
👑 |
提出日時 | 2019-04-02 16:26:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,604 ms / 2,000 ms |
コード長 | 548 bytes |
コンパイル時間 | 447 ms |
コンパイル使用メモリ | 32,512 KB |
最終ジャッジ日時 | 2025-01-07 01:19:08 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d", &K); | ~~~~~^~~~~~~~~~ main.cpp:13:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:16:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#pragma GCC optimize ("Ofast,unroll-loops") #pragma GCC target ("avx") #include <stdio.h> constexpr int MO = 1000000007; int main() { int K, N; int a[100010] = {}; int dp[100010] = {}; scanf("%d", &K); scanf("%d", &N); for (int i = 0; i < N; ++i) { int x; scanf("%d", &x); a[x] = 1; } dp[0] = 1; for (int y = 0; y < K; ++y) { const int c = dp[y]; for (int x = 1; x <= K - y; ++x) { if ((dp[y + x] += a[x] * c) >= MO) { dp[y + x] -= MO; } } } printf("%d\n", dp[K]); return 0; }