태그>1050p(총 1개의 글)
'1050p' 관련 최근글
-
- BitmapToGraph
-
불타는 아잍(IT)스크림 by 불타는 아이스크림|2019/06/12 21:37
Code import java.util.TreeSet; public class BitmapToGraph{ int[] dx = {-1,0,1,1,1,0,-1,-1}; int[] dy = {-1,-1,-1,0,1,1,1,0}; int n,m; String[] bmap; char check(int nx, int ny) { return (nx<0 || nx>=m || ny<0 |..
- BitmapToGraph