제출 #51335

#제출 시각아이디문제언어결과실행 시간메모리
51335NicksechkoMoney (IZhO17_money)C++11
45 / 100
1541 ms51600 KiB
#include <iostream>
#include <fstream>
#include <set>
#include <map>
#include <string>
#include <vector>
#include <bitset>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <cassert>
#include <queue>

#define mp make_pair
#define pb push_back


typedef long long ll;
typedef long double ld;

using namespace std;
const int MX = 1001000;

int n;
int a[MX];
set<int> ss;

int main() {
//	freopen("money.in", "r", stdin);
//	freopen("money.out", "w", stdout);
	scanf("%d", &n);
	for (int i = 0; i < n; ++i)
		scanf("%d", a + i);
	int cnt = 0;
	int now = 0;
	while (now < n) {
		++cnt;
		auto it = ss.upper_bound(a[now]);
		int rb = 1e7;
		if (it != ss.end())
			rb = *it;
		int lb = a[now];
		while (now < n && a[now] >= lb && a[now] <= rb)
			ss.insert(a[now]), lb = a[now], ++now;
	}
	cout << cnt << "\n";
	return 0;
}


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

money.cpp: In function 'int main()':
money.cpp:32:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
money.cpp:34:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", a + i);
   ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...