이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector <int> ans;
vector<int> t;
struct stone{
int a, index;
bool operator< (const stone &b) const{
return (a < b.a || (a == b.a && index < b.index));
}
bool operator> (const stone &b) const{
return (a > b.a || (a == b.a && index >= b.index));
}
};
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int N; cin >> N;
t.resize(N);
vector <stone> sorted(N);
for (int i(0); i < N; i++) {
cin >> t[i];
sorted[i] = {t[i], i};
}
sort(sorted.begin(), sorted.end());
for (int i(0); i < N; i++) {
stone b = {t[i], N};
int a = sorted[distance(sorted.begin(), upper_bound(sorted.begin(), sorted.end(), b)) - 1].index;
for (; i <= a; i++) cout << t[a] << '\n';
i--;
}
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... |