結果
問題 | No.45 回転寿司 |
ユーザー | zn_kie |
提出日時 | 2019-07-08 20:35:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,589 bytes |
コンパイル時間 | 864 ms |
コンパイル使用メモリ | 71,448 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-10-09 12:35:48 |
合計ジャッジ時間 | 13,330 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
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 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <deque> using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) int main(){ int N; cin >> N; vector<int> V(N); deque<int> d; rep(i,N){ cin >> V[i]; } // 深さ優先探索で解く // sum: ix番目までの選んだ寿司の美味しさの和を保存しておく // はじめに0番目を選んだパターンと1番目を選んだパターンの2通り考える vector<int> sum(N); // 0番目を選んだパターン d.push_back(0); sum[0]=V[0]; while(d.size()!=0){ int ix; ix = d.back(); d.pop_back(); if(ix+2>N-1){ continue; }else if(ix+3>N-1){ sum[ix+2]=max(sum[ix+2],sum[ix]+V[ix+2]); d.push_back(ix+2); }else{ sum[ix+2]=max(sum[ix+2],sum[ix]+V[ix+2]); d.push_back(ix+2); sum[ix+3]=max(sum[ix+3],sum[ix]+V[ix+3]); d.push_back(ix+3); } } d.push_back(1); sum[1]=V[1]; while(d.size()!=0){ int ix; ix = d.back(); d.pop_back(); if(ix+2>N-1){ continue; }else if(ix+3>N-1){ sum[ix+2]=max(sum[ix+2],sum[ix]+V[ix+2]); d.push_back(ix+2); }else{ sum[ix+2]=max(sum[ix+2],sum[ix]+V[ix+2]); d.push_back(ix+2); sum[ix+3]=max(sum[ix+3],sum[ix]+V[ix+3]); d.push_back(ix+3); } } sort(sum.begin(),sum.end(),greater<int>()); cout << sum[0] << endl; }