結果
問題 | No.921 ずんだアロー |
ユーザー | amaridekinai |
提出日時 | 2019-11-10 19:53:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,095 bytes |
コンパイル時間 | 1,648 ms |
コンパイル使用メモリ | 170,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 05:04:16 |
合計ジャッジ時間 | 2,914 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 27 ms
5,376 KB |
testcase_11 | AC | 29 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 21 ms
5,376 KB |
testcase_14 | AC | 25 ms
5,376 KB |
testcase_15 | AC | 16 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 25 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 30 ms
5,376 KB |
testcase_24 | AC | 31 ms
5,376 KB |
ソースコード
#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; }