제출 #950525

#제출 시각아이디문제언어결과실행 시간메모리
950525hengliao휴가 (IOI14_holiday)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; #define F first #define S second #define pb push_back #define vll vector<ll> #define pll pair<ll, ll> typedef ll ll; ll findMaxAttraction(int n, int s, int d, int a[]){ ll ans=0; if(s==0){ set<ll> st; ll cur=0; ll siz=0; for(ll i=0;i<n;i++){ if(d<=0) break; st.insert(a[i]); cur+=a[i]; siz++; while(siz>d){ cur-=*st.begin(); st.erase(st.begin()); siz--; } ans=max(ans, cur); d--; } } return ans; } /*int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ll a[5]={10, 2, 20, 30, 1}; cout<<findMaxAttraction(5, 0, 7, a); return 0; }*/

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

holiday.cpp:9:9: error: 'll' does not name a type; did you mean 'vll'?
    9 | typedef ll ll;
      |         ^~
      |         vll
holiday.cpp:11:1: error: 'll' does not name a type; did you mean 'vll'?
   11 | ll findMaxAttraction(int n, int s, int d, int a[]){
      | ^~
      | vll