結果
問題 | No.921 ずんだアロー |
ユーザー | RTnF |
提出日時 | 2019-11-08 21:32:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,970 bytes |
コンパイル時間 | 2,270 ms |
コンパイル使用メモリ | 211,128 KB |
実行使用メモリ | 10,228 KB |
最終ジャッジ日時 | 2024-09-15 01:13:53 |
合計ジャッジ時間 | 3,370 ms |
ジャッジサーバーID (参考情報) |
judge6 / 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 | 19 ms
9,644 KB |
testcase_11 | AC | 20 ms
9,952 KB |
testcase_12 | AC | 6 ms
5,376 KB |
testcase_13 | AC | 15 ms
7,936 KB |
testcase_14 | AC | 17 ms
8,784 KB |
testcase_15 | AC | 11 ms
6,608 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 17 ms
8,932 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 20 ms
10,228 KB |
testcase_24 | AC | 11 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vvvi = vector<vvi>; using vll = vector<ll>; using vvll = vector<vll>; using vvvll = vector<vvll>; using vs = vector<string>; using pll = pair<ll, ll>; using vp = vector<pll>; #define rep(i, n) for(ll i = 0; i < (n); i++) #define repb(i, n) for(ll i = (n)-1; i >= 0; i--) #define repr(i, a, b) for(ll i = (a); i < (b); i++) #define reprb(i, a, b) for(ll i = (b)-1; i >= (a); i--) #define ALL(a) (a).begin(), (a).end() #define SZ(x) ((ll)(x).size()) const ll MOD = 1000000007; const ll INF = 100000000000000000LL; const ld EPS = 1e-12L; const ld PI = 3.1415926535897932385L; inline ll GCD(ll a, ll b){ return b?GCD(b, a % b):a; } inline ll LCM(ll a, ll b){ return a/GCD(a, b)*b; } inline ll powint(ull x, ll y){ ll r=1; while(y){ if(y&1) r*=x; x*=x; y>>=1; } return r; } inline ll powmod(ll x, ll y, ll m = MOD){ ll r=1; while(y){ if(y&1) r*=x; x*=x; r%=m; x%=m; y>>=1; } return r; } template<class S, class T>inline bool chmax(S &a, const T &b){ if(a<b) { a=b; return 1; } return 0; } template<class S, class T>inline bool chmin(S &a, const T &b){ if(b<a) { a=b; return 1; } return 0; } #ifdef OJ_LOCAL #include "dump.hpp" #else #define dump(...) ((void)0) #endif vvll dp; int main(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(15); ll n; cin >> n; vll a(n); rep(i, n){ cin >> a[i]; } vll b; rep(i, n){ ll ls = SZ(b)-1; if(i > 0 && a[i] == a[i-1]){ b[ls]++; }else{ b.emplace_back(1); } } dump(b); ll m = SZ(b); dp.resize(m, vll(2)); dp[0][0] = b[0]; dp[0][1] = 0; repr(i, 1, m){ dp[i][0] = b[i] + dp[i-1][1]; dp[i][1] = max(dp[i-1][0], dp[i-1][1]); } cout << max(dp[m-1][0], dp[m-1][1]) << endl; return 0; }