# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1086157 |
2024-09-09T16:16:36 Z |
duytuandao21 |
Po (COCI21_po) |
C++17 |
|
7 ms |
860 KB |
#include<bits/stdc++.h>
using namespace std;
const int N = 2e5 + 7;
const int inf = 1e9 + 7;
const long long infll = 1e18 + 7;
int n;
int a[N], posMin[N], prePos[N];
pair<int, int> b[N];
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) cin >> a[i];
stack <int> st;
int res = 0;
for (int i = 1; i <= n; i++) {
while (st.size() > 0 && a[i] < st.top()) st.pop();
if (st.size() == 0 || st.top() != a[i])
{
if (a[i])
{
res++;
st.push(a[i]);
}
}
}
cout << res;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
3 ms |
604 KB |
Output is correct |
5 |
Correct |
4 ms |
604 KB |
Output is correct |
6 |
Correct |
7 ms |
860 KB |
Output is correct |
7 |
Correct |
7 ms |
860 KB |
Output is correct |