結果

問題 No.921 ずんだアロー
ユーザー amaridekinaiamaridekinai
提出日時 2019-11-10 19:53:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,095 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 169,516 KB
実行使用メモリ 4,540 KB
最終ジャッジ日時 2023-10-13 07:52:14
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 AC 1 ms
4,352 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,352 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 25 ms
4,356 KB
testcase_11 AC 27 ms
4,352 KB
testcase_12 AC 7 ms
4,348 KB
testcase_13 AC 19 ms
4,352 KB
testcase_14 AC 22 ms
4,352 KB
testcase_15 AC 14 ms
4,348 KB
testcase_16 AC 3 ms
4,348 KB
testcase_17 AC 23 ms
4,348 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 27 ms
4,352 KB
testcase_24 AC 28 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
  int N; cin >> N;
  vector<int> A(N);
  for(int i = 0; i < N; i++){ cin >> A[i];}
  
  int head = 0; int tail = 0;
  
  int ans = 0;
  
  vector<bool> flag(N,false);
  
  while( head < N && tail < N){ 
    
    while( A[head] == A[tail]){ tail++;}
    
    if( tail-head >= 2){ 
      for(int i = head; i < tail; i++){ flag[i] = true;}
    }
    
    head = tail;
  }
  
  head = 0; tail = 0;
  int cnt = 0;
  while( head < N && tail < N){
    
    if( flag[head]){
      
      while( flag[tail] && tail < N) { tail++;}
      cnt += tail-head;
      
      head = tail;
    }
    else{
      
      while( !flag[tail] && tail < N){ tail++;}
      
       if( (tail-head)%2){
         if( head == 0 && tail == N){ cnt += (tail-head+1)/2;}
         else{cnt += (tail-head-1)/2;}
       }
      
      else{ 
        if( head == 0 || tail == N){
          cnt += (tail-head)/2;}
        else{ 
          cnt += (tail-head-2)/2;}
      }
      
      head = tail;
    }
  }
 
  cout << cnt << endl; return 0;
}
      
0