結果

問題 No.572 妖精の演奏
ユーザー kktykkty
提出日時 2017-11-04 12:15:58
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 795 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 162,800 KB
実行使用メモリ 817,920 KB
最終ジャッジ日時 2024-05-02 14:56:19
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1,900 ms
245,632 KB
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,n) FOR(i,0,n)
#define FOR(i,a,b) for(ll i=a;i<b;i++)
#define PB push_back
#define LB lower_bound
#define UB upper_bound
#define PQ priority_queue
#define UM unordered_map
#define ALL(a) (a).begin(),(a).end()
#define MOD 1000000007
typedef vector<ll> vi;
typedef vector<vector<ll>> vvi;
const ll INF = (1ll << 30);
typedef pair<ll,ll> pii;
struct Edge{ ll s,t,c; };
typedef vector<vector<Edge>> Graph;
typedef vector<pii> vpii;
int main() {
  ll n,m; cin>>n>>m;
  vvi a(m,vi(m)); REP(i,m) REP(j,m) cin>>a[i][j];
  vvi dp(m,vi(n));
  FOR(i,1,n) {
    REP(j,m) {
      REP(k,m) {
        dp[j][i]=max(dp[j][i],dp[k][i-1]+a[k][j]);
      }
    }
  }
  ll ans=0; REP(i,m) ans=max(ans,dp[i][n-1]);
  cout<<ans<<endl;
}
0