結果
問題 | No.572 妖精の演奏 |
ユーザー | imulan |
提出日時 | 2017-10-07 00:30:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,359 bytes |
コンパイル時間 | 1,678 ms |
コンパイル使用メモリ | 167,480 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 03:10:41 |
合計ジャッジ時間 | 23,983 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 170 ms
5,248 KB |
testcase_01 | AC | 54 ms
5,248 KB |
testcase_02 | AC | 5 ms
5,248 KB |
testcase_03 | AC | 6 ms
5,248 KB |
testcase_04 | AC | 98 ms
5,248 KB |
testcase_05 | AC | 398 ms
5,248 KB |
testcase_06 | AC | 573 ms
5,248 KB |
testcase_07 | AC | 44 ms
5,248 KB |
testcase_08 | AC | 397 ms
5,248 KB |
testcase_09 | AC | 324 ms
5,248 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 1,758 ms
5,248 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,834 ms
5,248 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 265 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/3; int m; int a[30][30]; ll dp1[31][31][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 g(int s, int loop) { ll ret = 0; for(int i=1; i<=30; ++i) { if(loop%i==0) ret = max(ret,(loop/i)*f(s,s,i)); } return ret; } int main() { ll n; cin >>n >>m; --n; rep(i,m)rep(j,m) cin >>a[i][j]; memset(dp1,-1,sizeof(dp1)); ll ans = 0; rep(i,m)rep(j,m)rep(k,m)rep(ii,31)rep(jj,31) { ll rem = n-ii-jj; if(rem<0) continue; ans = max(ans, f(i,k,ii) + g(k,rem) + f(k,j,jj)); } cout << ans << endl; return 0; }