| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 762576 | KN200711 | Baloni (COCI15_baloni) | C++14 | 938 ms | 96764 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
using namespace std;
int arr[1000001];
bool vis[1000001];
set<int> pos[1000001];
int main() {
	int N;
	scanf("%d", &N);
	
//	for(int i=0;i<=1e6;i++) pos[i].clear();
	
	for(int i=1;i<=N;i++) {
		scanf("%d", &arr[i]);
		pos[arr[i]].insert(i);
		vis[i] = 0;
	}
	int ans = 0;
	for(int i=1;i<=N;i++) {
	//	cout<<"i : "<<i<<endl;
		if(vis[i]) continue;
	//	cout<<"ii : "<<i<<endl;
		
		int K = i + 1, H = arr[i] - 1;
		vis[i] = 1;
		ans++;
		while(H > 0 && pos[H].size()) {
		//	cout<<"H, K : "<<H<<" "<<K<<endl;
			auto p = pos[H].lower_bound(K);
		//	if(p == pos[H].end()) cout<<"end"<<endl;
			if(p == pos[H].end()) break;
		//	cout<<"vis"<<endl;
		//	cout<<"p : "<<*p<<endl;
			vis[*p] = 1;
			K =  *p + 1;
			
			pos[H].erase(p);
			H--;
		}
	//	cout<<endl;
	//	pos[H].insert(0);
	//	cout<<"aft : "<<H<<" "<<K<<" "<<pos[H].size()<<" "<<endl;
	//	cout<<endl;
	}
	printf("%d\n", ans);
	return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
