# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
917631 | envifly | Stone Arranging 2 (JOI23_ho_t1) | C++17 | 204 ms | 14692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifndef LOCAL
#define debug(...) 0
#else
#include "C:\programmingfunnyxd\debug.cpp"
#endif
using namespace std;
const int MOD = 1e9 + 7;
using ll = long long;
#define all(x) x.begin(), x.end()
void solve(){
int n; cin >> n;
map<int, int> last;
vector<int> a(n);
for(int i = 0; i < n; i++){
cin >> a[i];
last[a[i]] = i;
}
// the biggest segment reigns supreme
for(int i = 0; i < n; i++){
for(int j = i; j <= last[a[i]]; j++){
cout << a[i] << "\n";
}
i = last[a[i]];
}
}
int main(){
cin.tie(0) -> sync_with_stdio(0);
int T = 1;
// cin >> T;
while(T--) 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... |