# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1105578 | Drew_ | Po (COCI21_po) | C++17 | 10 ms | 724 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define f1 first
#define s2 second
using ll = long long;
using ii = pair<int, int>;
int main() {
ios :: sync_with_stdio(0);
cin.tie(0);
int N;
cin >> N;
int Z = 0;
priority_queue<int> pq;
for (int i = 0, x; i < N; ++i) {
cin >> x;
while (!pq.empty() && pq.top() > x) pq.pop();
if (!pq.empty() && pq.top() == x) continue;
pq.push(x); Z += x > 0;
}
cout << Z << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |