結果

問題 No.8046 yukicoderの過去問
ユーザー 👑 hos.lyric
提出日時 2019-04-02 16:28:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,615 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 32,256 KB
最終ジャッジ日時 2025-01-07 01:19:18
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |   scanf("%d", &K);
      |   ~~~~~^~~~~~~~~~
main.cpp:12:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |   scanf("%d", &N);
      |   ~~~~~^~~~~~~~~~
main.cpp:15:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |     scanf("%d", &x);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

#pragma GCC optimize ("Ofast,unroll-loops")
#pragma GCC target ("avx")

#include <stdio.h>

int main() {
  constexpr int MO = 1000000007;
  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) {
      dp[y + x] -= ((dp[y + x] += a[x] * c) >= MO) * MO;
    }
  }
  printf("%d\n", dp[K]);
  return 0;
}
0