Submission #394485

# Submission time Handle Problem Language Result Execution time Memory
394485 2021-04-26T17:46:31 Z MarcoMeijer Cluedo (IOI10_cluedo) C++14
0 / 100
1 ms 280 KB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;

// macros
typedef long long ll;
typedef long double ld;
typedef pair<int, int> ii;
typedef pair<ll, ll> lll;
typedef tuple<int, int, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<iii> viii;
typedef vector<ll> vll;
typedef vector<lll> vlll;
#define REP(a,b,c) for(int a=int(b); a<int(c); a++)
#define RE(a,c) REP(a,0,c)
#define RE1(a,c) REP(a,1,c+1)
#define REI(a,b,c) REP(a,b,c+1)
#define REV(a,b,c) for(int a=int(c-1); a>=int(b); a--)
#define FOR(a,b) for(auto& a : b)
#define all(a) a.begin(), a.end()
#define INF 1e9
#define EPS 1e-9
#define pb push_back
#define popb pop_back
#define fi first
#define se second
#define sz size()
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

void Solve(){
   vi pos[4];
   RE1(i,6 ) pos[1].pb(i);
   RE1(i,10) pos[2].pb(i);
   RE1(i,6 ) pos[3].pb(i);

   while(true) {
       int res = Theory(pos[0].back(), pos[1].back(), pos[2].back());
       if(res == 0) return;
       pos[res].pop_back();
   }
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 272 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 280 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -