結果
問題 | No.5 数字のブロック |
ユーザー | takooo |
提出日時 | 2024-03-22 13:37:57 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 2,880 ms |
コンパイル使用メモリ | 245,124 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 10:35:40 |
合計ジャッジ時間 | 4,061 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int l,n,w;cin>>l>>n;vector<int> A(l+1,-1);A[0]=0; for(int i=0;i<n;i++){ cin>>w; for(int j=l-w;j>=0;j--) if(A[j]>=0)A[j+w]=max(A[j+w],A[j]+1); } cout<<*max_element(A.begin(),A.end())<<endl; }