結果

問題 No.45 回転寿司
ユーザー itezpaceitezpace
提出日時 2016-09-27 07:41:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,045 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 60,160 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 15:34:46
合計ジャッジ時間 1,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
  int N,V; cin>>N;
  vector<int> v;
  for(int i=0;i<N;++i){
    cin>>V;
    v.push_back(V);
  }
  int pos=0;
  int sum=0;
  int vs=v.size();
  while(1){
    if(pos<=vs-1-3){
      if(v[pos]>=v[pos+1]){
        sum+=v[pos];
        pos+=2;
      } else {
        if((v[pos]+v[pos+2]>=v[pos+1]+v[pos+3]) || (v[pos]+v[pos+3]>=v[pos+1]+v[pos+3])){
          sum+=v[pos];
          pos+=2;
        } else {
          sum+=v[pos+1];
          pos+=3;
        }
      }
    } else if(pos==vs-1-2){
      if(v[pos]>=v[pos+1]){
        sum+=v[pos];
        sum+=v[pos+2];
      } else {
        if(v[pos]+v[pos+2]>=v[pos+1]){
          sum+=v[pos];
          sum+=v[pos+2];
        } else {
          sum+=v[pos+1];
        }
      }
      break;
    } else if(pos==vs-1-1){
      if(v[pos]>=v[pos+1]){
        sum+=v[pos];
      } else {
        sum+=v[pos+1];
      }
      break;
    } else if(pos==vs-1){
      sum+=v[pos];
      break;
    }
  }
  cout<<sum<<endl;
  return 0;
}
0