結果

問題 No.258 回転寿司(2)
ユーザー mint6421mint6421
提出日時 2019-07-02 21:20:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,279 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 162,016 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-11-09 00:52:40
合計ジャッジ時間 10,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
104,064 KB
testcase_01 AC 170 ms
104,960 KB
testcase_02 AC 111 ms
67,072 KB
testcase_03 AC 9 ms
7,680 KB
testcase_04 AC 74 ms
46,592 KB
testcase_05 AC 81 ms
50,944 KB
testcase_06 AC 151 ms
91,648 KB
testcase_07 AC 48 ms
31,104 KB
testcase_08 AC 79 ms
49,280 KB
testcase_09 AC 54 ms
33,664 KB
testcase_10 AC 20 ms
14,336 KB
testcase_11 AC 60 ms
38,016 KB
testcase_12 AC 73 ms
45,312 KB
testcase_13 AC 46 ms
29,312 KB
testcase_14 AC 141 ms
86,016 KB
testcase_15 AC 52 ms
33,408 KB
testcase_16 AC 50 ms
31,616 KB
testcase_17 AC 50 ms
31,872 KB
testcase_18 AC 159 ms
95,488 KB
testcase_19 AC 9 ms
7,680 KB
testcase_20 AC 117 ms
72,320 KB
testcase_21 AC 144 ms
88,448 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 109 ms
66,560 KB
testcase_27 AC 54 ms
34,048 KB
testcase_28 AC 170 ms
103,552 KB
testcase_29 AC 65 ms
40,960 KB
testcase_30 AC 23 ms
16,000 KB
testcase_31 AC 21 ms
14,848 KB
testcase_32 AC 54 ms
34,432 KB
testcase_33 AC 130 ms
78,848 KB
testcase_34 AC 96 ms
59,904 KB
testcase_35 AC 87 ms
54,272 KB
testcase_36 AC 27 ms
18,048 KB
testcase_37 AC 22 ms
15,232 KB
testcase_38 AC 61 ms
38,528 KB
testcase_39 AC 58 ms
36,736 KB
testcase_40 AC 109 ms
66,560 KB
testcase_41 AC 132 ms
80,128 KB
testcase_42 AC 52 ms
33,152 KB
testcase_43 AC 36 ms
23,680 KB
testcase_44 AC 143 ms
86,656 KB
testcase_45 AC 115 ms
70,784 KB
testcase_46 AC 7 ms
6,400 KB
testcase_47 AC 117 ms
71,936 KB
testcase_48 AC 32 ms
21,504 KB
testcase_49 AC 52 ms
33,408 KB
testcase_50 AC 7 ms
6,656 KB
testcase_51 AC 99 ms
61,952 KB
testcase_52 AC 89 ms
55,808 KB
testcase_53 AC 24 ms
16,768 KB
testcase_54 AC 115 ms
70,016 KB
testcase_55 AC 172 ms
103,936 KB
testcase_56 AC 115 ms
71,040 KB
testcase_57 AC 32 ms
21,120 KB
testcase_58 AC 87 ms
54,272 KB
testcase_59 AC 158 ms
96,128 KB
testcase_60 AC 16 ms
11,776 KB
testcase_61 AC 127 ms
77,696 KB
testcase_62 AC 55 ms
34,816 KB
testcase_63 AC 107 ms
65,792 KB
testcase_64 AC 170 ms
103,680 KB
testcase_65 AC 112 ms
68,608 KB
testcase_66 AC 8 ms
6,784 KB
testcase_67 AC 138 ms
83,840 KB
testcase_68 AC 141 ms
85,504 KB
testcase_69 AC 123 ms
75,392 KB
testcase_70 AC 50 ms
31,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:32:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
   32 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define inf 1000000000
#define INF 1000000000000000
#define ll long long
#define ull unsigned long long
#define M (int)(1e9+7)
#define P pair<int,int>
#define PLL pair<ll,ll>
#define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++)
#define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--)
#define rep(i,n) FOR(i,0,n)
#define rrep(i,n) RFOR(i,n,0)
#define all(a) a.begin(),a.end()
#define IN(a,n) rep(i,n){ cin>>a[i]; }
const int vx[4] = {0,1,0,-1};
const int vy[4] = {1,0,-1,0};
#define PI 3.14159265
#define F first
#define S second
#define PB push_back
#define EB emplace_back
#define int ll
void init(){
  cin.tie(0);
  ios::sync_with_stdio(false);
}

bool dp[1100][110000];

main(){
  int n;
  cin>>n;
  vector<int> v(n+1);
  rep(i,n){
    cin>>v[i+1];
  }

 
  dp[0][0]=true;
  dp[1][v[1]]=true;

  FOR(i,2,n+1){
    rep(j,100010){
      dp[i][j]|=dp[i-1][j];
      dp[i][j+v[i]]|=dp[i-2][j];
      if(dp[i][j]){
        //cout<<i<<' '<<j<<endl;
      }
    }
  }

  int res=0;
  rep(j,100010){
    if(dp[n][j]) res=j;
  }

  cout<<res<<endl;

  vector<int> ans;
  RFOR(i,n,1){
   if(dp[i][res]&&!dp[i-1][res]){
    ans.PB(i);
    res-=v[i];
   }
  }

  reverse(all(ans));
  rep(i,ans.size()){
    cout<<ans[i]<<' ';
  }
  cout<<endl;



}
0