結果
問題 | No.572 妖精の演奏 |
ユーザー | imulan |
提出日時 | 2017-10-07 00:35:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 108 ms / 2,000 ms |
コード長 | 1,459 bytes |
コンパイル時間 | 1,657 ms |
コンパイル使用メモリ | 168,116 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 03:10:49 |
合計ジャッジ時間 | 3,452 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
5,248 KB |
testcase_01 | AC | 10 ms
5,248 KB |
testcase_02 | AC | 11 ms
5,248 KB |
testcase_03 | AC | 12 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 12 ms
5,248 KB |
testcase_06 | AC | 17 ms
5,248 KB |
testcase_07 | AC | 34 ms
5,248 KB |
testcase_08 | AC | 24 ms
5,248 KB |
testcase_09 | AC | 40 ms
5,248 KB |
testcase_10 | AC | 68 ms
5,248 KB |
testcase_11 | AC | 68 ms
5,248 KB |
testcase_12 | AC | 71 ms
5,248 KB |
testcase_13 | AC | 72 ms
5,248 KB |
testcase_14 | AC | 108 ms
5,248 KB |
testcase_15 | AC | 72 ms
5,248 KB |
testcase_16 | AC | 105 ms
5,248 KB |
testcase_17 | AC | 70 ms
5,248 KB |
testcase_18 | AC | 14 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second #define dbg(x) cout<<#x" = "<<((x))<<endl template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} const ll INF = LLONG_MAX/4; ll n; int m; int a[30][30]; ll dp1[30][30][31]; ll f(int from, int to, int step) { if(dp1[from][to][step]>=0) return dp1[from][to][step]; if(step==0) { if(from==to) return 0; return -INF; } ll ret = 0; rep(i,m) ret = max(ret, f(i,to,step-1)+a[from][i]); return dp1[from][to][step] = ret; } ll dp2[30][62]; ll g(int s, int elim) { if(dp2[s][elim]>=0) return dp2[s][elim]; ll rem = n-elim; if(rem<0) return -INF; ll ret = 0; for(int i=1; i<=30; ++i) { if(rem%i==0) ret = max(ret,(rem/i)*f(s,s,i)); } return dp2[s][elim] = ret; } int main() { cin >>n >>m; --n; rep(i,m)rep(j,m) cin >>a[i][j]; memset(dp1,-1,sizeof(dp1)); memset(dp2,-1,sizeof(dp2)); ll ans = 0; rep(i,m)rep(j,m)rep(k,m)rep(ii,31)rep(jj,31) { ans = max(ans, f(i,k,ii) + g(k,ii+jj) + f(k,j,jj)); } cout << ans << endl; return 0; }