結果

問題 No.3711 Udon, Tempura
コンテスト
ユーザー Rumain831
提出日時 2026-09-12 13:47:10
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0 + ACL)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 31 ms / 2,000 ms
+ 39µs
コード長 675 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,259 ms
コンパイル使用メモリ 180,560 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-09-12 13:47:26
合計ジャッジ時間 3,624 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
using ll = long long;

int main(void){
  int n, m; cin >> n >> m;
  vector<int> u(n), t(m);
  for(auto&x:u) cin >> x;
  for(auto&x:t) cin >> x;
  int mx=1000*m;
  vector<bool> dp(mx+1);
  dp[0]=true;
  for(int i=0; i<m; i++){
    vector<bool> old(mx+1);
    swap(old, dp);
    for(int j=0; j<=mx; j++)if(old[j]){
      dp[j]=true;
      dp[j+t[i]]=true;
    }
  }
  int mmx=mx+1e5+1;
  vector<bool> all(mmx);
  for(int i=0; i<n; i++){
    for(int j=0; j<=mx; j++)if(dp[j]){
      all[j+u[i]]=true;
    }
  }
  int ans=0;
  for(int i=0; i<mmx; i++) ans+=all[i];
  cout << ans << endl;
  return 0; 
}
0