제출 #646886

#제출 시각아이디문제언어결과실행 시간메모리
646886tigarDetecting Molecules (IOI16_molecules)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; int find_subset(int l, int u, int* w, int n, int* result) { sort(w, w+n); long long sums[n+1]; sums[0]=(ll)0; for(int i=1; i<=n; i++)sums[i]=(ll)w[i-1]+sums[i-1]; for(int i=1, j=1; i<=n;) { int sum=sums[i]-sums[j-1]; if(sum>=l and sum<=u) { for(int k=j-1, l=0; k<i; k++, l++)result[l]=w[k]; break; } else if(sum<l)i++; else if(sum>u)j++; } return 0; }

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

/usr/bin/ld: /tmp/ccFpDQ0J.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