結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | mencotton |
提出日時 | 2020-11-02 15:20:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 92 ms / 2,000 ms |
コード長 | 504 bytes |
コンパイル時間 | 614 ms |
コンパイル使用メモリ | 73,844 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 06:16:40 |
合計ジャッジ時間 | 2,008 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin >> n; int sum = 0; vector<int> dp(10, n); dp[0] = 0; for (int i = 0; i < n; i++) { int a; cin >> a; sum += a, sum %= 10; vector<int> after(10, n); for (int j = 0; j < 10; j++) { after[(j + a) % 10] = min(dp[(j + a) % 10], dp[j] + 1); } dp = after; } cout << n - dp[sum] << endl; return 0; }