Submission #661140

#TimeUsernameProblemLanguageResultExecution timeMemory
661140Kaztaev_AlisherMoney (IZhO17_money)C++17
0 / 100
5 ms340 KiB
//#pragma GCC optomize ("Ofast") //#pragma GCC optomize ("unroll-loops") //#pragma GCC target ("avx,avx2,fma") #include <bits/stdc++.h> #define F first #define S second #define pb push_back #define sz size #define cl clear #define ins insert #define ers erase #define pii pair < int , int > #define pll pair< long long , long long > #define all(x) x.begin() , x.end() #define ios ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define file(s) if (fopen(s".in", "r")) freopen(s".in", "r", stdin), freopen(s".out", "w", stdout) #define tostr(x) to_string(x) #define tonum(s) atoi(s.c_str()) #define seon(x) setprecision(x) #define bpop(x) __builtin_popcount(x) #define deb(x) cerr << #x << " = " << x << endl; typedef long long ll; typedef unsigned long long ull; typedef double db; typedef long double ldb; const double PI = 3.14159265; const ll N = 1e6+5; const ll mod = 1e9+7; const ll inf = 1e9; const ll INF = 1e18; using namespace std; ll a[N] , l[N] , r[N]; void solve(){ int n; cin >> n; for(int i = 1; i <= n; i++){ cin >> a[i]; l[i] = i-1; r[i] = i+1; } ll ans = 0; for(int i = n; i >= 1; i--){ int j = i , b = a[i]; while(a[j-1] == l[b]) j-- , b = l[b]; r[l[a[j]]] = r[a[i]]; l[r[a[i]]] = l[a[j]]; i = j; ans++; } cout << ans << "\n"; } signed main(){ ios; solve(); return 0; } /* */
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...