Submission #49372

#TimeUsernameProblemLanguageResultExecution timeMemory
49372imeimi2000Game (IOI14_game)C++17
Compilation error
0 ms0 KiB
#include "game.h"
#include <algorithm>
 
using namespace std;
 
int on[1500][1500];
int cnt[1500];
void initialize(int n) {}
 
int hasEdge(int u, int v) {
    if (u > v) swap(u, v);
    if (on[u][v]) return on[u][v] - 1;
    return (on[u][v] = (++cnt[v] == v) + 1) - 1;
}

Compilation message (stderr)

game.cpp:12:2: error: stray '\302' in program
     if (on[u][v]) return on[u][v] - 1;
  ^
game.cpp:12:3: error: stray '\240' in program
     if (on[u][v]) return on[u][v] - 1;
   ^
game.cpp:12:5: error: stray '\302' in program
     if (on[u][v]) return on[u][v] - 1;
     ^
game.cpp:12:6: error: stray '\240' in program
     if (on[u][v]) return on[u][v] - 1;
      ^
game.cpp:13:2: error: stray '\302' in program
     return (on[u][v] = (++cnt[v] == v) + 1) - 1;
  ^
game.cpp:13:3: error: stray '\240' in program
     return (on[u][v] = (++cnt[v] == v) + 1) - 1;
   ^
game.cpp:13:5: error: stray '\302' in program
     return (on[u][v] = (++cnt[v] == v) + 1) - 1;
     ^
game.cpp:13:6: error: stray '\240' in program
     return (on[u][v] = (++cnt[v] == v) + 1) - 1;
      ^