이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <stack>
using namespace std;
#define endl '\n'
#define pi pair<int, int>
const int maxn = 1000000;
int n;
pi a[maxn];
bool used[maxn];
stack<int> stk;
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
for(int i = 0; i < n; i++){
cin >> a[i].first;
a[i].second = i;
}
sort(a, a + n);
int ret = 0;
for(int i = 0; i < n; i++){
if(stk.empty() || !a[i].second || !used[a[i].second - 1]){
stk.push(a[i].second);
used[a[i].second] = 1;
}else{
while(stk.top() != a[i].second - 1){
used[stk.top()] = 1;
stk.pop();
ret++;
}
used[stk.top()] = 0;
stk.pop();
stk.push(a[i].second);
used[a[i].second] = 1;
}
}
ret += stk.size();
cout << ret << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |