Submission #365564

#TimeUsernameProblemLanguageResultExecution timeMemory
365564iliccmarkoDetecting Molecules (IOI16_molecules)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"
#define INF 1000000000
#define LINF 1000000000000000LL
#define pb push_back
#define all(x) x.begin(), x.end()
#define len(s) (int)s.size()
#define test_case { int t; cin>>t; while(t--)solve(); }
#define single_case solve();
#define line cerr<<"----------"<<endl;
#define ios { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cerr.tie(NULL); }
#define mod 1000000007LL
const int N = 2e5 + 5;
pair<int, int> a[N];

vector<int> find_subset(int l, int u, vector<int> w)
{
   vector<int> res;
   int ind = 0;
   for(int x : w)
   {
       a[ind].first = x;
       a[ind].second = ind;
       ind++;
   }
   int n = len(w);
   sort(a, a+n);
   for(int i = 0;i<n;i++)
   {
       if(a[i].first>=l&&a[i].first<=u)
       {
           res.pb(a[i].second);
           return res;
       }
   }
   for(int i = 0;i<n-1;i++)
   {
       if(a[i].first+a[n-1].first>=l&&a[i].first+a[n-1].first<=u)
       {
           res.pb(a[i].second);
           res.pb(a[n-1].second);
           return res;
       }
   }
   return res;
}



int main()
{
    ios






    return 0;
}

Compilation message (stderr)

/tmp/cc2HfPCu.o: In function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/ccOawRg9.o:molecules.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status