結果

問題 No.1117 数列分割
ユーザー hedwig100hedwig100
提出日時 2020-07-17 22:23:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,246 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 173,400 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-05-07 11:23:19
合計ジャッジ時間 14,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,888 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 32 ms
8,704 KB
testcase_04 AC 183 ms
7,936 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 329 ms
7,296 KB
testcase_09 AC 29 ms
6,940 KB
testcase_10 AC 405 ms
7,552 KB
testcase_11 AC 2,722 ms
21,632 KB
testcase_12 AC 859 ms
22,912 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
using ll = long long;
using PL = pair<ll,ll>;
using P = pair<int,int>;
constexpr int INF = 1000000000;
constexpr long long HINF = 1000000000000000;
constexpr long long MOD = 1000000007;// = 998244353;
constexpr double EPS = 1e-4;
constexpr double PI = 3.14159265358979;


struct Debug {
    template<class T> static void print_value(T value,const char* name) {
        cout << name << ": " << value << '\n';
    }
    template<class T> static void print_vector(vector<T> &vec,const char* name) {
        for (int i = 0;i < vec.size();++i) {
            cout << "  " << name;
            printf("[%d]: ",i);
            cout << vec[i];
        }
        cout << '\n';
    }
    template<class T> static void print_2dvector(vector<vector<T>> &vec,const char* name) {
        for (int i = 0;i < vec.size();++i) {
            for (int j = 0;j < vec[i].size();++j) {
                cout << "  " << name;
                printf("[%d][%d]: ",i,j);
                cout << vec[i][j];
            }
            cout << '\n';
        }
    }
    template<class T> static void print_set(set<T> &st,const char* name) {
        int i = 0;
        for (auto itr = st.begin();itr != st.end(); ++itr,++i) {
            cout << "  " << name;
            printf("[%d]: ",i);
            cout << *itr;
        }
        cout << '\n';
    }

    template<class T1,class T2>
    static void print_map(map<T1,T2> &mp,const char* name) {
        for (auto p: mp) {
            cout << "  " << name << '[' << p.first << ']' << ": " << p.second;
        }
        cout << '\n';
    }
};

int main() {
    int N,K,M; cin >> N >> K >> M;
    vector<ll> A(N + 1);
    rep(i,N) cin >> A[i + 1];
    rep(i,N) A[i + 1] += A[i];

    vector<vector<ll>> dp(K + 1,vector<ll>(N + 1,0));
    rep(i,N) dp[1][i + 1] = abs(A[i + 1] - A[0]);

    for (int i = 1;i < K;++i){
        rep(j,N) {
            for (int k = max(j - M,0);k <= j;++k) {
                dp[i + 1][j + 1] = max(dp[i + 1][j + 1],dp[i][k] + abs(A[j + 1] - A[k]));
            }
        }
    } 
    //Debug::print_vector(A,"A");
    //Debug::print_2dvector(dp,"dp");
    cout << dp.back().back() << '\n';
    return 0;
}
0