結果

問題 No.258 回転寿司(2)
ユーザー koyoprokoyopro
提出日時 2015-10-07 19:48:44
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,026 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 164,956 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2024-11-24 10:39:44
合計ジャッジ時間 60,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 890 ms
33,024 KB
testcase_03 AC 24 ms
6,784 KB
testcase_04 AC 381 ms
16,128 KB
testcase_05 AC 468 ms
17,792 KB
testcase_06 AC 1,950 ms
45,184 KB
testcase_07 AC 184 ms
10,496 KB
testcase_08 AC 427 ms
17,024 KB
testcase_09 AC 213 ms
11,264 KB
testcase_10 AC 58 ms
7,168 KB
testcase_11 AC 267 ms
13,056 KB
testcase_12 AC 378 ms
16,000 KB
testcase_13 AC 165 ms
9,728 KB
testcase_14 AC 1,658 ms
42,368 KB
testcase_15 AC 212 ms
11,264 KB
testcase_16 AC 193 ms
10,880 KB
testcase_17 AC 198 ms
10,624 KB
testcase_18 TLE -
testcase_19 AC 23 ms
6,784 KB
testcase_20 AC 1,003 ms
30,976 KB
testcase_21 AC 1,819 ms
45,568 KB
testcase_22 AC 6 ms
6,656 KB
testcase_23 AC 6 ms
6,528 KB
testcase_24 AC 7 ms
6,528 KB
testcase_25 AC 4 ms
6,656 KB
testcase_26 AC 821 ms
27,392 KB
testcase_27 AC 217 ms
11,648 KB
testcase_28 TLE -
testcase_29 AC 300 ms
13,952 KB
testcase_30 AC 67 ms
7,552 KB
testcase_31 AC 62 ms
7,424 KB
testcase_32 AC 217 ms
11,520 KB
testcase_33 AC 1,284 ms
36,480 KB
testcase_34 AC 666 ms
23,424 KB
testcase_35 AC 546 ms
20,608 KB
testcase_36 AC 84 ms
8,064 KB
testcase_37 AC 63 ms
7,296 KB
testcase_38 AC 273 ms
13,056 KB
testcase_39 AC 253 ms
12,672 KB
testcase_40 AC 834 ms
26,880 KB
testcase_41 AC 1,359 ms
36,352 KB
testcase_42 AC 203 ms
11,008 KB
testcase_43 AC 119 ms
8,832 KB
testcase_44 AC 1,702 ms
42,368 KB
testcase_45 AC 980 ms
29,952 KB
testcase_46 AC 17 ms
6,656 KB
testcase_47 AC 1,068 ms
31,360 KB
testcase_48 AC 104 ms
8,192 KB
testcase_49 AC 209 ms
11,520 KB
testcase_50 AC 19 ms
6,784 KB
testcase_51 AC 713 ms
24,320 KB
testcase_52 AC 549 ms
20,992 KB
testcase_53 AC 73 ms
7,424 KB
testcase_54 AC 964 ms
30,080 KB
testcase_55 TLE -
testcase_56 AC 962 ms
29,184 KB
testcase_57 AC 101 ms
8,192 KB
testcase_58 AC 535 ms
20,736 KB
testcase_59 TLE -
testcase_60 AC 45 ms
6,912 KB
testcase_61 AC 1,231 ms
34,432 KB
testcase_62 AC 226 ms
11,392 KB
testcase_63 AC 806 ms
26,752 KB
testcase_64 TLE -
testcase_65 AC 893 ms
28,416 KB
testcase_66 AC 19 ms
6,784 KB
testcase_67 AC 1,444 ms
40,192 KB
testcase_68 AC 1,591 ms
40,192 KB
testcase_69 AC 1,093 ms
32,000 KB
testcase_70 AC 187 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define MAX 111111
#define ALL(a) (a).begin(),(a).end()
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()

int N;
vector< pair<bool, vector<int> > > dp(MAX);
signed main()
{
    cin >> N;
    vector<int> V(N);
    REP(i,N) cin >> V[i];
    int maxv = 0;
    dp[0].first = true;
    REP(i,N) {
        int v = V[i];
        RREP(j,MAX) {
            if (i > 0 && CONTAIN(dp[j].second, i-1)) continue;
            if (!dp[j].first) continue;
            if (dp[j+v].first) {
                vector<int> w = dp[j+v].second;
                if (w[w.size()-1] < i) continue;
            }
            dp[j+v].second = dp[j].second;
            dp[j+v].second.push_back(i);
            dp[j+v].first = true;
            maxv = max(maxv, j+v);
        }
    }
    cout << maxv << endl;
    for (auto&& a : dp[maxv].second) {
        cout << a+1 << " ";
    }
    cout << endl;
    return 0;
}
0