'알고리즘' 태그의 글 목록 (44 Page)
1258 행렬찾기
#include #include #include #include #include using namespace std; #define NS 102 int map[NS][NS]; int chk[NS][NS]; int N; int ret; int dy[] = { 0,1,0,-1 }; int dx[] = { 1,0,-1,0 }; struct Data { int size, y, x; }; bool cmp(Data a, Data b) { if (a.size == b.size)return a.y < b.y; else return a.size < b.size; } vectorv; struct Matrix { Matrix() { int T; scanf("%d", &T); for (int t = 1; t
2020. 2. 27.