結果
問題 | No.921 ずんだアロー |
ユーザー | tanimani364 |
提出日時 | 2019-11-08 23:36:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 3,236 bytes |
コンパイル時間 | 1,180 ms |
コンパイル使用メモリ | 121,452 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 02:44:18 |
合計ジャッジ時間 | 2,474 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 11 ms
5,376 KB |
testcase_11 | AC | 11 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 8 ms
5,376 KB |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 9 ms
5,376 KB |
testcase_18 | AC | 11 ms
5,376 KB |
testcase_19 | AC | 11 ms
5,376 KB |
testcase_20 | AC | 11 ms
5,376 KB |
testcase_21 | AC | 12 ms
5,376 KB |
testcase_22 | AC | 12 ms
5,376 KB |
testcase_23 | AC | 12 ms
5,376 KB |
testcase_24 | AC | 12 ms
5,376 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<map> #include<set> #include<cstdio> #include<cmath> #include<numeric> #include<queue> #include<stack> #include<cstring> #include<limits> #include<functional> #include<unordered_set> #include<iomanip> #include<cassert> #define rep(i,a) for(int i=(int)0;i<(int)a;++i) #define pb push_back #define eb emplace_back using ll=long long; constexpr ll mod = 1e9 + 7; constexpr ll INF = 1LL << 50; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } using namespace std; template<typename T> struct edge{ int to; T cost; edge(int to,T cost):to(to),cost(cost){} }; vector<int>pre; template<typename T> vector<T> dijkstra(vector<vector<edge<T>>> &g,int s){//sは始点 const auto INFTY=numeric_limits<T>::max(); vector<T>dist(g.size(),INFTY); pre.resize(g.size(),-1); using P=pair<T,int>;//firstは最短距離,secondは頂点の番号 priority_queue<P,vector<P>,greater<P>>pq; dist[s]=0; pq.emplace(dist[s],s); while(!pq.empty()){ auto x=pq.top();pq.pop(); int v=x.second; if(dist[v]<x.first)continue;//最短距離でなければ飛ばす for(auto e:g[v]){ if(dist[e.to]>dist[v]+e.cost){ pre[e.to]=v; dist[e.to]=dist[v]+e.cost; pq.emplace(dist[e.to],e.to); } } } return dist; } template<typename T> vector<T>get_path(int t){//頂点tへの最短経路 vector<T>path; for(;t!=-1;t=pre[t]){ path.push_back(t); } reverse(path.begin(),path.end()); return path; } struct UF { vector<int>par;//親 vector<int>Rank;//木の深さ vector<int>sz;//要素数 UF(int n){init(n);} //初期化 void init(int n) { par.resize(n); Rank.resize(n);sz.resize(n); for (int i = 0; i < n; i++) { par[i]= i; Rank[i] = 0; sz[i]=1; } } //木の根を求める int find(int x) { if (par[x] == x) { return x; } else { return par[x] = find(par[x]); } } //xとyの属する集合を併合 bool unite(int x, int y) { x = find(x); y = find(y); if (x == y)return false;//すでに同じ集合に属している if (Rank[x] < Rank[y]) {//高さが小さい方を下に par[x] = y; sz[y]+=sz[x]; } else { par[y] = x; if (Rank[x] == Rank[y])Rank[x]++;//同じだとrankが変わらないままになるので増やす(それ以外は大きい方のrankが採用される) sz[x]+=sz[y]; } return true; } //xとyが同じ集合に属するかを判定 bool same(int x, int y) { return find(x) == find(y); } int size(int k){//要素数を求める return sz[find(k)]; } }; void solve(){ int n; cin>>n; vector<int>a(n); rep(i,n)cin>>a[i]; vector<int>dp(n+5); dp[1]=1; for(int i=1;i<n;++i){ if(a[i]!=a[i-1])dp[i+1]=dp[i-1]+1; else dp[i+1]=dp[i]+1; } cout<<dp[n]<<"\n"; } signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout<<fixed<<setprecision(15); solve(); return 0; }