結果
問題 | No.1334 Multiply or Add |
ユーザー | HIR180 |
提出日時 | 2021-01-09 01:19:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,904 bytes |
コンパイル時間 | 2,206 ms |
コンパイル使用メモリ | 206,488 KB |
実行使用メモリ | 6,368 KB |
最終ジャッジ日時 | 2024-11-16 21:02:01 |
合計ジャッジ時間 | 6,313 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 31 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
5,248 KB |
testcase_07 | AC | 31 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 30 ms
5,248 KB |
testcase_10 | AC | 30 ms
5,248 KB |
testcase_11 | AC | 30 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 30 ms
5,248 KB |
testcase_17 | AC | 30 ms
5,248 KB |
testcase_18 | AC | 31 ms
5,248 KB |
testcase_19 | AC | 30 ms
5,248 KB |
testcase_20 | AC | 29 ms
5,248 KB |
testcase_21 | AC | 30 ms
5,248 KB |
testcase_22 | AC | 31 ms
5,248 KB |
testcase_23 | AC | 30 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 31 ms
5,248 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 29 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 79 ms
6,236 KB |
testcase_51 | AC | 80 ms
6,236 KB |
testcase_52 | AC | 81 ms
6,240 KB |
testcase_53 | AC | 78 ms
6,368 KB |
testcase_54 | AC | 80 ms
6,240 KB |
testcase_55 | AC | 84 ms
6,368 KB |
testcase_56 | AC | 2 ms
5,248 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | AC | 1 ms
5,248 KB |
testcase_60 | AC | 1 ms
5,248 KB |
testcase_61 | AC | 2 ms
5,248 KB |
testcase_62 | AC | 1 ms
5,248 KB |
testcase_63 | AC | 1 ms
5,248 KB |
testcase_64 | AC | 2 ms
5,248 KB |
testcase_65 | AC | 1 ms
5,248 KB |
testcase_66 | AC | 65 ms
6,092 KB |
testcase_67 | AC | 41 ms
5,248 KB |
testcase_68 | AC | 4 ms
5,248 KB |
testcase_69 | AC | 71 ms
6,180 KB |
testcase_70 | AC | 69 ms
6,140 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; #define rng(i,a,b) for(int i=int(a);i<int(b);i++) #define rep(i,b) rng(i,0,b) #define repn(i, b) rng(i, 1, b+1) #define pb push_back #define eb emplace_back #define all(x) x.begin(),x.end() #define si(x) int(x.size()) #ifdef LOCAL #define dmp(x) cerr<<__LINE__<<" "<<#x<<" "<<x<<endl #else #define dmp(x) void(0) #endif template<class t,class u>bool chmax(t&a,u b){ if(a<b){ a=b;return true; }else{ return false; } } template<class t,class u>bool chmin(t&a,u b){ if(b<a){ a=b;return true; }else{ return false; } } template<class t,class u> ostream&operator<<(ostream&os,const pair<t,u>&p){ return os<<"{"<<p.first<<","<<p.second<<"}"; } template<class t> ostream&operator<<(ostream&os,const vector<t>&v){ os<<"{"; for(auto e:v)os<<e<<","; return os<<"}"; } template<class t> using vc = vector<t>; #define a first #define b second using P=pair<int,int>; const ll mod = 1000000007; void add(int &a, int b){ a += b; if(a >= mod) a-=mod; } int n, cnt; vc<P>pos; int main(){ cin >> n; vc<int>v; rep(i, n){ int a; cin >> a; v.pb(a); } while(v.back() == 1){ cnt ++; v.pop_back(); } reverse(all(v)); while(v.back() == 1){ cnt ++; v.pop_back(); } reverse(all(v)); if(v.empty()){ cout << n << endl; return 0; } ll M = 1, mm = 1; rep(i, v.size()){ if(v[i] > 1) { pos.eb(v[i], i); M = M * v[i]; mm = mm * v[i] % mod; chmin(M, (ll)(1000007)); } } ll ans; if(M >= 1000000){ ans = mm; } else{ int dp[22] = {}; rep(i, pos.size()){ dp[i+1] = 1; for(int j=0;j<=i;j++){ dp[i+1] *= pos[j].a; } } for(int i=1;i<=pos.size();i++){ int add = pos[i].a - pos[i-1].a - 1; int zan = 1; for(int j=i;j<pos.size();j++){ zan = zan * pos[j].a; chmax(dp[j+1], dp[i] + add + zan); } } ans = dp[pos.size()]; } cout << (ans + cnt) % mod << endl; }