Submission #253354

#TimeUsernameProblemLanguageResultExecution timeMemory
253354eohomegrownappsFriend (IOI14_friend)C++14
Compilation error
0 ms0 KiB
#include "friend.h" #include <bits/stdc++.h> using namespace std; // Find out best sample int subtask1(int n,int confidence[],int host[],int protocol[]){ vector<vector<int>> adjlist(n); for (int i = 1; i<n; i++){ if (protocol[i]==0){ adjlist[host[i]].push_back(i); adjlist[i].push_back(host[i]); } else if (protocol[i]==1){ for (int x : adjlist[host[i]]){ adjlist[i].push_back(x); adjlist[x].push_back(i); } } else { for (int x : adjlist[host[i]]){ adjlist[i].push_back(x); adjlist[x].push_back(i); }; adjlist[host[i]].push_back(i); adjlist[i].push_back(host[i]); } } ll mx = 0; for (int i = 0; i<(1<<n); i++){ //check if ok bool works = true; ll tot = 0; for (int j = 0; j<n; j++){ if ((1<<j)&i){ mx+=confidence[j]; for (int k : adjlist[j]){ if ((1<<k)&i){ works=false; break; } } } if (works==false){ break; } } if (works==false){ continue; } } return mx; } int findSample(int n,int confidence[],int host[],int protocol[]){ if (n<=10){ return subtask1(n,confidence,host,protocol); } return 0; }

Compilation message (stderr)

friend.cpp: In function 'int subtask1(int, int*, int*, int*)':
friend.cpp:27:5: error: 'll' was not declared in this scope
     ll mx = 0;
     ^~
friend.cpp:31:12: error: expected ';' before 'tot'
         ll tot = 0;
            ^~~
friend.cpp:34:17: error: 'mx' was not declared in this scope
                 mx+=confidence[j];
                 ^~
friend.cpp:50:12: error: 'mx' was not declared in this scope
     return mx;
            ^~