Home
디피의 개발일지
Cancel

15683 Samsung sw test

15683 Samsung sw test 코드 #include <iostream> #include <cstring> #define MAX_WIDTH 8 #define WALL 6 #define BLINDSPOT 0 using namespace std; typedef struct CCTV { int row; int col;...

15486 퇴사2

15486 퇴사2 코드 #include <iostream> using namespace std; int N, T[1500000], P[1500000], DP[1500000]; int dp(int deep); int max(int a, int b) { return a > b ? a : b; } int main() { ios:...

14891 Samsung sw test

14891 Samsung sw test 코드 #include <iostream> #include <cstdio> #define MAX_ROTATE 100 #define LEFT 6 #define RIGHT 2 using namespace std; int command[MAX_ROTATE][2]; int gear[4][8];...

14890 Samsung sw test

14890 Samsung sw test 코드 #include <iostream> #include <cstring> #define MAX_N 100 using namespace std; int map[MAX_N][MAX_N]; int width; int need; int checkEveryArr(); bool checkSi...

14889 Samsung sw test

14889 Samsung sw test 코드 #include <iostream> #include <cstring> #define MAX_WIDTH 20 using namespace std; int numOfPeople; int map[MAX_WIDTH][MAX_WIDTH]; int minDifferenceBetweenTw...

14888 Samsung sw test

14888 Samsung sw test 코드 #include <iostream> #define MAX_NUM 11 using namespace std; int num[MAX_NUM]; int numOfNum; int operators[4]; // + - * / int operatorPerm[MAX_NUM - 1]; // 1 : +, ...

14863 서울에서 경산까지

14863 서울에서 경산까지 알고리즘 (dp) 1. dp를 평범하게 진행. dp배열은 dp[101][100001] 로 앞에는 현재 위치, 뒤에는 시간 2. 시간이 맞으면 진행하되, 안맞으면 result 를 초기화해둔 -20000000이 그대로 있음. 3. 0보다 낮으면, 현재 시간포함 0초까지 -20000000로 초기화. 같은 상태에 더 낮은 시간...

14503 Samsung sw test

14503 Samsung sw test 코드 #include <iostream> #define MAX_WIDTH 50 using namespace std; int direction; int location[2]; int map[MAX_WIDTH][MAX_WIDTH]; int height, width; int robot(); bool...

14502 Samsung sw test

14502 Samsung sw test 코드 #include <iostream> #include <list> #include <cstring> #define MAX_WIDTH 8 using namespace std; typedef struct Cell { int row; int col; } Cell; int...

14501 Samsung sw test

14501 Samsung sw test 코드 #include <iostream> #define MAX_DAY 15 using namespace std; int day; int time[MAX_DAY]; int proceeds[MAX_DAY]; int DP(int d, int proceed); int max(int a, int b);...