Submission #650667

# Submission time Handle Problem Language Result Execution time Memory
650667 2022-10-14T15:10:25 Z Pety Koala Game (APIO17_koala) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "koala.h"

#define ll long long

using namespace std;

const int INF = 1e9;
const int MOD = 1e9 + 7;

int t, a[200002];
int q[100], R[100];

int greaterValue(int n, int w) {
  int st = 1, dr = 7;
  while (st <= dr) {
    int mid = (st + dr) / 2;
    q[0] = q[1] = mid;
    playRound(q, R); 
    if (R[0] != R[1])
      return R[0] < R[1]; 
    if (!R[0])
      dr = mid - 1;
    else
      st = mid + 1;
  }
  return 0;
}


int main () 
{
  ios_base::sync_with_stdio(false);
  cin.tie(0); cout.tie(0);
  cin >> t;
  while (t--) {
    int n;
    cin >> n;
    for (int i = 1; i <= n; i++) {
      cin >> a[i];
    }
    int msk = (1 << 30) - 1;
    while (msk) {
      int mx = 0, poz = 0;
      for (int i = 1; i <= n; i++) {
        if (a[i] != -1)
          if (i == 1 || (mx < (a[i] & msk))) {
            poz = i;
            mx = (a[i] & msk);
          }
      }
      if (mx == 0)
        break;
      cout << a[poz] << " ";
      msk = msk - (msk & a[poz]);
      a[poz] = -1;
      
    }
    for (int i = 1; i <= n; i++)
      if (a[i] != -1) {
        cout << a[i] << " ";
      }
    cout << "\n";
  }
  
  return 0;
}

Compilation message

/usr/bin/ld: /tmp/cco7f6cP.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccr2ktoO.o:koala.cpp:(.text.startup+0x0): first defined here
/usr/bin/ld: /tmp/cco7f6cP.o: in function `runGame(int)':
grader.cpp:(.text+0x157): undefined reference to `minValue(int, int)'
/usr/bin/ld: grader.cpp:(.text+0x191): undefined reference to `allValues(int, int, int*)'
/usr/bin/ld: grader.cpp:(.text+0x1d7): undefined reference to `maxValue(int, int)'
collect2: error: ld returned 1 exit status