hiho week 151 register

Ended

Participants:262

Verdict:Wrong Answer
Score:30 / 100
Submitted:2017-05-27 19:58:41

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <sstream>
#include<fstream>
#include <vector>
#include <deque>
#include<string>
#include<string.h>
#include <iostream>
#include<ctime>
#include<unordered_map>
#include<algorithm>
using namespace std;
const int dir[6][3] = {
    
    {-1, 0, 0},
    {0, -1, 0},
    {0, 0, -1},
    { 1, 0, 0 },
    { 0, 1, 0 },
    { 0, 0, 1 },
};
int pos[102][102][102];
int c[102][102][102];
int is_ok[102][102][102];
int x_c[100000], y_c[100000], z_c[100000];
int max_cor;
struct Pt {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX