Submission #996816

#TimeUsernameProblemLanguageResultExecution timeMemory
996816faqinyeagerStone Arranging 2 (JOI23_ho_t1)C++17
60 / 100
2080 ms15208 KiB
#include <bits/stdc++.h>
#define ff first
#define ss second
using namespace std;
using ll = long long;

ll n;
vector<ll> a;


int main(){
    cin >> n;
    
    a.resize(n);
    map<int, int> tmp;
    
    for(int i = 0; i < n; i++) cin >> a[i], tmp[a[i]] += 1;
    
    int lx = 0, rx = n - 1;
    
    while(lx <= rx){
        if(a[lx] == a[rx]){
            for(int i = 0; i < rx - lx + 1; i++) cout << a[lx] << '\n';
            lx = rx + 1;
            rx = n - 1;
            if(lx >= n) break;
        }
        while(a[lx] != a[rx]) rx -= 1;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...