Submission #418065

# Submission time Handle Problem Language Result Execution time Memory
418065 2021-06-05T02:03:08 Z Mamnoon_Siam Navigation 2 (JOI21_navigation2) C++17
Compilation error
0 ms 0 KB
#include "Anna.h"
#include <bits/stdc++.h>
using namespace std;

using ii = pair<int, int>;
using ll = long long;
using vll = vector<ll>;
using vi = vector<int>;
#define fi first
#define se second
#define all(v) begin(v), end(v)
#define sz(v) (int)(v.size())

namespace {

} // namespace

void Anna(int N, int K, std::vector<int> R, std::vector<int> C) {
  for(int r = 0; r < N; ++r) {
    for(int c = 0; c < N; ++c) {
      vi action(7, 4);
      for(int i = 0; i < K; ++i) {
        if(C[i] > c) action[i] = 0;
        if(C[i] < c) action[i] = 1;
        if(R[i] > r) action[i] = 2;
        if(R[i] < r) action[i] = 3;
      }
      int value = 0;
      for(int i = K-1; i >= 0; --i) {
        value = value * 5 + action[i];
      }
      SetFlag(r, c, value + 1);
    }
  }
}
#include "Bruno.h"
#include <bits/stdc++.h>
using namespace std;

using ii = pair<int, int>;
using ll = long long;
using vll = vector<ll>;
using vi = vector<int>;
#define fi first
#define se second
#define all(v) begin(v), end(v)
#define sz(v) (int)(v.size())

namespace {

} // namespace

vi Bruno(int K, vi value) {
  int number = value[4] - 1;
  vi ret(K);
  for(int i = 0; i < K; ++i) {
    ret[i] = number % 5;
    number /= 5;
  } 
  return ret;
}
#include "Bruno.h"
#include <bits/stdc++.h>
using namespace std;

using ii = pair<int, int>;
using ll = long long;
using vll = vector<ll>;
using vi = vector<int>;
#define fi first
#define se second
#define all(v) begin(v), end(v)
#define sz(v) (int)(v.size())

namespace {

} // namespace

vi Bruno(int K, vi value) {
  int number = value[4] - 1;
  vi ret(K);
  for(int i = 0; i < K; ++i) {
    ret[i] = number % 5;
    number /= 5;
  } 
  return ret;
}

Compilation message

Bruno.cpp:44:4: error: redefinition of 'vi Bruno(int, vi)'
   44 | vi Bruno(int K, vi value) {
      |    ^~~~~
Bruno.cpp:18:4: note: 'std::vector<int> Bruno(int, std::vector<int>)' previously defined here
   18 | vi Bruno(int K, vi value) {
      |    ^~~~~