제출 #725351

#제출 시각아이디문제언어결과실행 시간메모리
725351AndrijaMDetecting Molecules (IOI16_molecules)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; vector<long long>arr; long long n; long long dp[10005][10005]; long long f(long long idx,long long x,vector<long long>vec,long long mx,vector<long long>weight) { if(idx==n) { arr=vec; return 0; } if(dp[idx][x]!=-1)return dp[idx][x]; long long rez=0; rez=max(rez, f(idx+1,x,vec,mx,weight)); vector<long long>pom; pom=vec; pom.push_back(idx); if(x+weight[idx]<=mx) rez=max(rez, f(idx+1,x+weight[idx],pom,mx,weight)+weight[idx]); return dp[idx][x]=rez; } vector<long long> find_subset(long long l, long long u, vector<long long> w) { memset(dp,-1,sizeof dp); vector<long long>v; queue<long long>Q; n=w.size(); long long kol=f(0,0,v,u,w); if(kol<l) { arr.clear(); } return arr; }

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

/usr/bin/ld: /tmp/ccmer88N.o: in function `main':
grader.cpp:(.text.startup+0x18d): undefined reference to `find_subset(int, int, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status