# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1121211 | Neco_arc | Stone Arranging 2 (JOI23_ho_t1) | C++17 | 83 ms | 15388 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define name "Stone Arranging 2"
#define fi(i, a, b) for(int i = a; i <= b; ++i)
#define fid(i, a, b) for(int i = a; i <= b; --i)
#define maxn (int) (2e5 + 7)
using namespace std;
int n;
unordered_map<int, int> d;
vector<pair<int, int>> P;
void solve() {
cin >> n;
fi(i, 1, n) {
int x; cin >> x;
if(!d[x]) P.push_back({i, x}), d[x] = 1;
else {
while(P.back().second != x) d[P.back().second] = 0, P.pop_back();
P.back().first = i;
}
}
reverse(P.begin(), P.end());
fi(i, 1, n) {
while(i > P.back().first) P.pop_back();
cout << P.back().second << '\n';
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
if(fopen(name".inp", "r")) {
freopen(name".inp", "r", stdin);
freopen(name".out", "w", stdout);
}
solve();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |