제출 #305815

#제출 시각아이디문제언어결과실행 시간메모리
305815T0p_Exhibition (JOI19_ho_t2)C++14
0 / 100
1 ms384 KiB
#include<bits/stdc++.h> using namespace std; struct picture { long long s, v; bool operator < (const picture & o) const { return v < o.v; } }; picture p[100100]; long long f[100100], arr[100100]; stack<long long> stk; int main() { long long n, m; scanf(" %lld %lld",&n,&m); for(int i=1 ; i<=n ; i++) scanf(" %lld %lld",&p[i].s,&p[i].v); for(int i=1 ; i<=m ; i++) scanf(" %lld",&f[i]); sort(p+1, p+n+1); sort(f+1, f+m+1); stk.push(0); for(int i=1 ; i<=n ; i++) { long long l = 1, r = m+1; while(l != r) { long long mid = (l+r)>>1; (p[i].s <= f[mid]) ? r = mid : l = mid+1; } arr[i] = l; } int idx = 0, ans = 0; for(int i=n ; i>=1 ; i--) if(arr[i] != m+1) { idx = i; break ; } if(idx) { stk.push(m); ans = 1; for(long long i=idx-1 ; i>=1 ; i--) if(arr[i] < stk.top()) { stk.push(stk.top()-1); ans++; } } printf("%lld\n",ans); return 0; }

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

joi2019_ho_t2.cpp: In function 'int main()':
joi2019_ho_t2.cpp:56:13: warning: format '%lld' expects argument of type 'long long int', but argument 2 has type 'int' [-Wformat=]
   56 |  printf("%lld\n",ans);
      |          ~~~^    ~~~
      |             |    |
      |             |    int
      |             long long int
      |          %d
joi2019_ho_t2.cpp:20:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   20 |  scanf(" %lld %lld",&n,&m);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~~
joi2019_ho_t2.cpp:22:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   22 |   scanf(" %lld %lld",&p[i].s,&p[i].v);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
joi2019_ho_t2.cpp:24:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   24 |   scanf(" %lld",&f[i]);
      |   ~~~~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...