結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | y |
提出日時 | 2020-09-26 08:35:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 2,935 bytes |
コンパイル時間 | 2,037 ms |
コンパイル使用メモリ | 206,364 KB |
実行使用メモリ | 43,728 KB |
最終ジャッジ日時 | 2024-06-28 18:11:12 |
合計ジャッジ時間 | 4,060 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 55 ms
21,760 KB |
testcase_05 | AC | 50 ms
19,456 KB |
testcase_06 | AC | 19 ms
9,472 KB |
testcase_07 | AC | 57 ms
22,656 KB |
testcase_08 | AC | 23 ms
14,336 KB |
testcase_09 | AC | 12 ms
7,040 KB |
testcase_10 | AC | 50 ms
20,352 KB |
testcase_11 | AC | 61 ms
23,936 KB |
testcase_12 | AC | 110 ms
41,684 KB |
testcase_13 | AC | 115 ms
43,648 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 117 ms
43,728 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; // #define LOCAL // 提出時はコメントアウト #define DEBUG_ typedef long long ll; const double EPS = 1e-9; const ll INF = ((1LL<<62)-(1LL<<31)); typedef vector<ll> vecl; typedef pair<ll, ll> pairl; template<typename T, typename U> using mapv = map<T,vector<U>>; #define ALL(v) v.begin(), v.end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i, n) REP(i, 0, n) #define contains(S,x) find(ALL(S),x) != S.end() ll llceil(ll a,ll b) { return (a+b-1)/b; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> vector<vector<T>> genarr(ll n, ll m, T init) { return vector<vector<T>>(n,vector<T>(m,init)); } ///// DEBUG #define DUMPOUT cerr #define repi(itr, ds) for (auto itr = ds.begin(); itr != ds.end(); itr++) template<typename T>istream&operator>>(istream&is,vector<T>&vec){for(T&x:vec)is>>x;return is;} template<typename T,typename U>ostream&operator<<(ostream&os,pair<T,U>&pair_var){os<<"("<<pair_var.first<<", "<<pair_var.second<<")";return os;} template<typename T>ostream&operator<<(ostream&os,const vector<T>&vec){os<<"{";for(int i=0;i<vec.size();i++){os<<vec[i]<<(i+1==vec.size()?"":", ");} os<<"}";return os;} template<typename T,typename U>ostream&operator<<(ostream&os,map<T,U>&map_var){os<<"{";repi(itr,map_var){os<<*itr;itr++;if(itr!=map_var.end())os<<", ";itr--;} os<<"}";return os;} template<typename T>ostream&operator<<(ostream&os,set<T>&set_var){os<<"{";repi(itr,set_var){os<<*itr;itr++;if(itr!=set_var.end())os<<", ";itr--;} os<<"}";return os;} void dump_func(){DUMPOUT<<endl;} template<class Head,class...Tail>void dump_func(Head&&head,Tail&&...tail){DUMPOUT<<head;if(sizeof...(Tail)>0){DUMPOUT<<", ";} dump_func(std::move(tail)...);} #ifndef LOCAL #undef DEBUG_ #endif #ifdef DEBUG_ #define DEB #define dump(...) \ DUMPOUT << " " << string(#__VA_ARGS__) << ": " \ << "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]" \ << endl \ << " ", \ dump_func(__VA_ARGS__) #else #define DEB if (false) #define dump(...) #endif ////////// int main() { #ifdef LOCAL ifstream in("../../Atcoder/input.txt"); cin.rdbuf(in.rdbuf()); #endif ll N; cin>>N; vecl A(N); rep(i,N) { cin>>A[i]; } auto dp = genarr(N+10,20,0LL); dp[0][0] = 1; rep(i,N) { rep(j,10) { dp[i+1][j] = dp[i][j]; } rep(j,10) { if (dp[i][j] > 0) chmax(dp[i+1][(j+A[i])%10],dp[i][j]+1); } } dump(dp); cout << dp[N][0] - 1 << endl; return 0; }