제출 #875481

#제출 시각아이디문제언어결과실행 시간메모리
875481AverageAmogusEnjoyerDetecting Molecules (IOI16_molecules)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> bool cmin(T &i, T j) { return i > j ? i=j,1:0; }
template<class T> bool cmax(T &i, T j) { return i < j ? i=j,1:0; }
const int N=1e4,W=5e5+1;
bitset<W> dp;
int find_subset(int l, int u, int w[], int n, int result[]) {
    dp[0]=true;
    for (int i=0;i<n;i++) {
    }
    return 0;
}
int main() {
    ios_base::sync_with_stdio(0); 
    cin.tie(0);
}
/*
 * U - L >= the greatest difference
 * Say U - L was 'low' 
 * that means element aren't so different from each other
 * subtract the minimum element from them all 
 * the maximus sum will be n * (U-L) 
 * run dp for min and max number of elements to form such sum 
 * that is, dp[i][j] = (minimum # of elements to form sum j considering first i elements,
 *                      max ...)
 * O(n*n*(U-L))
*/

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

/usr/bin/ld: /tmp/ccPvmssi.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccRtQCki.o:molecules.cpp:(.text.startup+0x0): first defined here
/usr/bin/ld: /tmp/ccPvmssi.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