제출 #960220

#제출 시각아이디문제언어결과실행 시간메모리
960220RyaroXDetecting Molecules (IOI16_molecules)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>s
#include "molecules.h"

typedef long long ll;
ll dp[20005];
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
    ll n=w.size();
    ll d=0;
    dp[0]=1;
    for(ll i=0;i<n;i++){
        ll a=w[i];
        for(ll j=0;j<u;j++){
            if(dp[j]>0){
                dp[j+a]=a;
                if(j+a>=l and j+a<=u){
                    ll s=j+a;
                    vector <ll> V;
                    while(s>0){
                        //cout<<s<<" "<<dp[s]<<"\n";
                        V.push_back(dp[s]);
                        s=s-dp[s];
                    }
                    reverse(V.begin(), V.end());
                    return V;
                }
            }

        }
    }
}

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

molecules.cpp:1:10: fatal error: bits/stdc++.h>: No such file or directory
    1 | #include <bits/stdc++.h>s
      |          ^~~~~~~~~~~~~~~~
compilation terminated.