結果

問題 No.572 妖精の演奏
ユーザー nanophoto12nanophoto12
提出日時 2017-10-09 23:09:46
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,951 bytes
コンパイル時間 1,336 ms
コンパイル使用メモリ 102,312 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-10 21:22:17
合計ジャッジ時間 2,381 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cmath>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <functional>
#include <queue>
#include <iostream>
#include <string.h>
#include <iomanip>
#include <algorithm>
#include <functional>
#include <cstdint>
#include <climits>
#include <unordered_set>
#include <sstream>
#include <stack>

using namespace std;

typedef long long int ll;
typedef pair<ll,ll> pii;
typedef tuple<ll,ll,ll> t3;

using namespace std;

ll n, m;
vector<vector<vector<ll>>> mat;

vector<vector<ll>> add(const vector<vector<ll>>& s)
{
    auto p = vector<vector<ll>>(m, vector<ll>(m, 0));
    for(int y1 = 0;y1 < m;y1++)
    {
        for(int x1 = 0;x1 < m;x1++)
        {
            for(int y2 = 0;y2 < m;y2++)
            {
                p[y1][x1] = max(p[y1][x1], s[y2][x1] + s[y1][y2]);
            }
        }
    }
    return p;
}

vector<vector<ll>> add(const vector<vector<ll>>& l,const vector<vector<ll>>& r)
{
    auto p = vector<vector<ll>>(m, vector<ll>(m, 0));
    for(int y1 = 0;y1 < m;y1++)
    {
        for(int x1 = 0;x1 < m;x1++)
        {
            for(int y2 = 0;y2 < m;y2++)
            {
                p[y1][x1] = max(p[y1][x1], l[y2][x1] + r[y1][y2]);
            }
        }
    }
    return p;
}

int main() {
    cin >> n >> m;
    mat.emplace_back();
    mat[0].assign(m, vector<ll>(m, 0));
    for(int y = 0;y < m;y++)
    {
        for(int x = 0;x < m;x++)
        {
            cin>> mat[0][y][x];
        }
    }
    for(int i = 1, j = 1;j <= n;i++, j*=2)
    {
        mat.emplace_back(add(mat[i-1]));
    }
    auto ret = vector<vector<ll>>(m, vector<ll>(m, 0));
    int i = 0;
    n--;
    while(n > 0)
    {
        if(n & 1)
        {
            ret = add(ret, mat[i]);
        }
        n>>=1;
        i++;
    }
    ll r = 0;
    for(int y = 0;y < m;y++)
    {
        for(int x = 0;x < m;x++)
        {
            r = max(r, ret[y][x]);
        }
    }
    cout << r << endl;    
    return 0;
}
0