C 프로그래밍/CODE TREE 삼성 기출 복원
-
[코드트리] 미로타워 디펜스C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 12. 14. 22:55
https://www.codetree.ai/training-field/frequent-problems/maze-tower-defense/description?page=2&pageSize=20 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include int N, M; int board[25 + 2][25 + 2]; int tmp[25 + 2][25 + 2]; struct _ct { int d; int p; }; _ct CMD[100 + 2]; struct _st { int x, y; }; _st Snail[625 + 2];// 5번을 위한 달팽이 좌표 i..
-
[코드트리 모의시험] 삼성 공채 코딩테스트 모의3C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 12. 5. 01:45
1. 봄버맨 https://www.codetree.ai/problems/bomber-man/description 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include int N; char board[7 + 2][7 + 2]; int bx, by; int ans = -1; struct _st { int x, y; }; std::queue Q; std::queue TMP; // dir int dir_x[4] = { 0, 0, 1, -1 }; int dir_y[4] = { 1, -1, 0, 0 }; void input() { scanf("%d", &N);..
-
[코드트리 모의시험] 삼성 공채 코딩테스트 모의2C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 11. 28. 11:46
1. 하나가 되고싶어 https://www.codetree.ai/problems/want-to-be-one/description 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include #include int N; char board[5 + 2][5 + 2]; int ans = 0x7fffffff; struct _st { int x, y; }; std::vector Wall; std::vector Blank; std::queue Q; int visited[5 + 2][5 + 2]; void input() { scanf("%d", &N); for (int..
-
[코드트리] 산타의 선물공장 2C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 11. 24. 10:32
https://www.codetree.ai/frequent-problems/santa-gift-factory-2/description 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include #include #include #define INIT (100) #define MOVE (200) #define SWAP (300) #define SEPERATE (400) #define GET_INFO (500) #define ABOUT_BELT (600) int C; int N, M; std::list Belt[100000 + 2]; std::list::ite..
-
[코드트리 모의시험] 삼성 공채 코딩테스트 모의 1C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 11. 10. 17:45
공교롭게도 둘 다 첫시도에서 AC를 받았는데.. 시험때도 이렇게만 풀고 나와라 ~~~ 나자신 ~~ 1. 동전 챙기기 https://www.codetree.ai/problems/collect-coins/description 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include #include #include int N; char board[20 + 2][20 + 2]; int sx, sy; int ex, ey; int cur_x; int cur_y; struct _st { int x, y; int coin; }; bool compare(const _s..
-
[코드트리 45] 예술성C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 11. 6. 01:29
++22.12.12 코드 갱신해봤다 https://www.codetree.ai/frequent-problems/artistry/description 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include #include int N; int board[30 + 2][30 + 2]; int num[30 + 2][30 + 2]; int g_num = 1; int cnt; struct _st { int block_cnt; int real_num; }Groups[900]; struct _qt { int x, y; }; std::queue Q; int visit..
-
[코드트리 48] 싸움땅C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 11. 1. 13:07
https://www.codetree.ai/frequent-problems/battle-ground/description 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include #include int N, M, K; struct COMP { bool operator()(const int &a, const int &b) { return a < b;// 큰거 부터 } }; std::priority_queue GUN[20 + 2][20 + 2]; int POS[20 + 2][20 + 2]; struct _st { int x, y; int d; int s; ..
-
[코드트리 44] 술래잡기C 프로그래밍/CODE TREE 삼성 기출 복원 2022. 10. 28. 22:37
++ 22.12.12 갱신 https://www.codetree.ai/training-field/frequent-problems/hide-and-seek/description?page=3&pageSize=20 코드트리 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요. www.codetree.ai #include #include #include int N, M, H, K; struct _st { int x, y; int dir; bool alive; }; _st Runner[10000 + 2]; int Tree[100 + 2][100 + 2]; struct _ct { int x, y; }; _ct Catcher_NPOS[10000 ..