http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&code=2261 JUNGOL www.jungol.co.kr #include //#define DEBUG const int INF = 99999999; int N, K, S, D, s, e; bool visited[1010]; //가장 짧은 해밍 거리를 구해야 하는 것이므로, 한 번 해밍거리 1로 push된 놈을 또 방문하면 안 된다. char arr[1010][32]; struct P { int idx; //마지막 방문지점 int cnt; //방문 히스토리 개수 short* hist; void operator=(const P& from) { idx = from.idx; cnt = from.cnt; for (i..