結果
問題 | No.921 ずんだアロー |
ユーザー | nakaken88 |
提出日時 | 2019-11-08 21:49:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,186 bytes |
コンパイル時間 | 1,535 ms |
コンパイル使用メモリ | 168,468 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 01:24:50 |
合計ジャッジ時間 | 2,819 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | WA | - |
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 | 26 ms
5,376 KB |
testcase_11 | AC | 29 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 24 ms
5,376 KB |
testcase_15 | AC | 15 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 31 ms
5,376 KB |
testcase_20 | AC | 31 ms
5,376 KB |
testcase_21 | AC | 30 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 31 ms
5,376 KB |
testcase_24 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,s,n) for(ll i = (s); i < (n); i++) #define rep0(i,n) rep(i,0,n) #define rep1(i,n) rep(i,1,n+1) #define repR(i,s,n) for(ll i = (n-1); i >= (s); i--) #define repR0(i,n) repR(i,0,n) #define repR1(i,n) repR(i,1,n+1) #define BR "\n" #define SP " " #define SHOW(x) for(int i = 0; i < x.size(); i++) { cout << x[i] << SP; } cout << BR; #define SHOW2(x) for(int j = 0; j < x.size(); j++) { SHOW(x[j]); } cout << BR; #define fcout cout << fixed << setprecision(18) int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; int a[100]; int cells[100][100]; // r * c int main() { ll N; cin >> N; vector<ll> A(N); rep0(i, N) cin >> A[i]; vector<ll> B(N, 0); int i = 1, cnt = 0; int ans = 0; while(i < N) { if (A[i] == A[i - 1]) { B[i] = B[i - 1] = 1; cnt++; } else { ans += cnt; cnt = 0; } i++; } if (cnt > 0) { ans += cnt; B[N - 1] = B[N - 2] = 1; } int b = 0; i = N - 1; while(i >= 0) { if (B[i] == 0) { b++; } else { ans += (++b / 2); b = 0; } i--; } ans += (++b / 2); cout << ans << BR; return 0; }