import java.util.* fun main(args: Array){ val (a1, a2) = readLine()!!.split(" ").map { it.toInt() } w = a1 h = a2 for(i in 1..h) { map.add(readLine()!!.trim().split(" ").map { it.toInt() }.toTypedArray()) flags.add((1..w).map { false }.toTypedArray()) } for(i in 0..h-1) { for(j in 0..w-1) { val history = mutableMapOf>() history[i] = mutableMapOf() history[i]!![j] = true stk.push(Task(i ,j, -1, -1, history)) while (stk.isNotEmpty()) { val tsk = stk.pop() getAns(tsk.y, tsk.x, tsk.prevY, tsk.prevX, tsk.history) } flags[i][j] = true } } if(ans) { println("possible") } else { println("impossible") } } class Task(val y: Int, val x: Int, val prevY: Int, val prevX: Int, val history: MutableMap>) val stk = Stack() var w = 0 var h = 0 var ans = false val map = mutableListOf>() var flags = mutableListOf>() fun getAns(y:Int, x:Int, prevY:Int, prevX:Int, history:MutableMap>) { if(ans) { return } if(flags[y][x]) { return } val num = map[y][x] for(i in Math.max(0, y-1)..Math.min(h-1, y+1)) { for(j in Math.max(0, x-1)..Math.min(w-1, x+1)) { if(i!=y && j!=x) { continue } if(i==y&&j==x) { continue } if(i ==prevY && j ==prevX) { continue } if(map[i][j] != map[y][x]) { continue } if(history.containsKey(i) && history[i]!!.containsKey(j)) { ans = true return } val subHistory = mutableMapOf>() history.forEach { subHistory[it.key] = it.value.toMutableMap() } if(!subHistory.containsKey(i)) { subHistory[i] = mutableMapOf() } subHistory[i]!![j] = true stk.push(Task(i, j, y, x, subHistory)) } } }