제출 #1019730

#제출 시각아이디문제언어결과실행 시간메모리
1019730NValchanov휴가 (IOI14_holiday)C++17
0 / 100
23 ms6308 KiB
#include <bits/stdc++.h> #include "holiday.h" using namespace std; typedef long long ll; ll start0(int n, int d, int a[]) { ll ans = 0; set < ll > s; ll sum = 0; for(int i = 0; i < n; i++) { s.insert((ll)a[i]); sum += (ll)a[i]; ll ost = d - i; while(s.size() > ost) { auto it = s.begin(); sum -= (ll)*it; s.erase(it); } ans = max(ans, sum); } return ans; } ll slow(int n, int start, int d, int a[]) { return -1; } long long int findMaxAttraction(int n, int start, int d, int a[]) { if(start == 0) return start0(n, d, a); else slow(n, start, d, a); }

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

holiday.cpp: In function 'll start0(int, int, int*)':
holiday.cpp:23:24: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
   23 |         while(s.size() > ost)
      |               ~~~~~~~~~^~~~~
holiday.cpp: In function 'long long int findMaxAttraction(int, int, int, int*)':
holiday.cpp:48:13: warning: control reaches end of non-void function [-Wreturn-type]
   48 |         slow(n, start, d, a);
      |         ~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...