[PS] BaekJoon 7569
#include <iostream>
#include <queue>
#define MAX 101
using namespace std;
struct Coordinate
{
Coordinate(int x, int y, int z)
{
X = x;
Y = y;
Z = z;
}
int X;
int Y;
int Z;
};
int locoX[6] = { -1,1,0,0...
sungwoolee.hashnode.dev2 min read