제출 #35767

#제출 시각아이디문제언어결과실행 시간메모리
35767funcsrMoney (IZhO17_money)C++14
45 / 100
1500 ms56692 KiB
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
#include <cassert>
#include <bitset>
using namespace std;

typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define index(xs, x) (int)(lower_bound(all(xs), x) - xs.begin())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007

int N;
int A[1000000];
int L[1000000];

signed main() {
  scanf("%d", &N);
  rep(i, N) scanf("%d", &A[i]);
  L[N-1] = N-1;
  for (int i=N-2; i>=0; i--) {
    if (A[i] <= A[i+1]) L[i] = L[i+1];
    else L[i] = i;
  }

  set<int> vs;
  vs.insert(1000001);
  rep(i, N) {
    int lim = *vs.upper_bound(A[i]);
    L[i] = upper_bound(A+i, A+L[i]+1, lim) - A - 1;
    vs.insert(A[i]);
  }
  assert(is_sorted(L, L+N));
  int lo = 0, ctr = 0;
  while (lo < N) {
    lo = L[lo]+1;
    ctr++;
  }
  printf("%d\n", ctr);
  return 0;
}

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

money.cpp: In function 'int main()':
money.cpp:32:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &N);
                  ^
money.cpp:33:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   rep(i, N) 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...