이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define vl vector<ll>
#define sl set<ll>
#define all(v) v.begin(), v.end()
#define f first
#define s second
#define pb push_back
#define pll pair<ll, ll>
#define pii pair<int, int>
#define tests while(t--)
using namespace std;
int main()
{
ll n, i, j;
cin >> n;
vl v(n);
for(ll&h : v) cin >> h;
map<ll, ll>mp;
for(i = 0; i < n; i++) mp[v[i]] = i;
for(i = 0; i < n; i++)
{
//cout << "i: " << i << "\n";
for(j = i; j <= mp[v[i]]; j++)
cout << v[i] << "\n";
i = mp[v[i]];
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |