結果

問題 No.45 回転寿司
ユーザー shota525shota525
提出日時 2018-05-03 20:55:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 670 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 159,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-08 12:12:34
合計ジャッジ時間 6,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,816 KB
testcase_01 AC 163 ms
6,940 KB
testcase_02 AC 407 ms
6,944 KB
testcase_03 AC 622 ms
6,940 KB
testcase_04 AC 184 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 42 ms
6,944 KB
testcase_07 AC 397 ms
6,944 KB
testcase_08 AC 15 ms
6,944 KB
testcase_09 AC 363 ms
6,944 KB
testcase_10 AC 37 ms
6,940 KB
testcase_11 AC 8 ms
6,940 KB
testcase_12 AC 296 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 38 ms
6,944 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 31 ms
6,944 KB
testcase_18 AC 21 ms
6,944 KB
testcase_19 AC 345 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 44 ms
6,944 KB
testcase_27 AC 280 ms
6,940 KB
testcase_28 AC 52 ms
6,944 KB
testcase_29 AC 322 ms
6,944 KB
testcase_30 AC 312 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 670 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int N;
int taste[1000] = {0};
int dp[1001] = {0};
int result = 0;

void rec(int number = 0, int sum = 0){
    
    if(number == (N - 1) || number == (N - 2)){
        if(result < sum) result = sum;
        if(sum == 0) result = taste[number];
        return;
    }
    
    if(dp[number] != 0 && dp[number] >= sum) return;
    dp[number] = sum;
    
    int i;
    if(number == 0 && sum == 0){
        for(i = 0; i < N; ++i){
            rec(i, sum + taste[i]);
        }
    }
    else{
        for(i = number + 1; i < N; ++i){
            if(i != (number + 1)) rec(i, sum + taste[i]);
        }
    }
    
    return;
}

int main(void){
    
    cin >> N;
    
    int i;
    for(i = 0; i < N; ++i){
        cin >> taste[i];
    }
    
    rec();
    
    cout << result << endl;
    
    return 0;
}
0