제출 #927938

#제출 시각아이디문제언어결과실행 시간메모리
927938IsamBaloni (COCI15_baloni)C++17
100 / 100
176 ms7508 KiB
#include<bits/stdc++.h>

/*

......

*/

using namespace std;

constexpr int sz = 2e5 + 5;

int n;
map<int, int> mp;

int main(){
	ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
	cin >> n;
	vector<int> h(n);
	for(auto &j : h) cin >> j;
	for(register int i = n - 1; i >= 0; --i){
		if(mp[h[i] - 1]){
			mp[h[i] - 1]--;
		}
		mp[h[i]]++;
	}
	int ans(0);
	for(auto &it : mp) ans += it.second;
	cout << ans << '\n';
	return 0;
}
/*


*/

컴파일 시 표준 에러 (stderr) 메시지

baloni.cpp: In function 'int main()':
baloni.cpp:21:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
   21 |  for(register int i = n - 1; i >= 0; --i){
      |                   ^
#Verdict Execution timeMemoryGrader output
Fetching results...