목록전체 글 (513)
Rylah's Study & Daily Life
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14BgD6AEECFAYh SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com // 1210 Ladder 1 #include using namespace std; int ladderArray[100][100]; int visitArray[100][100]; int moveX[3] = {0, 0, -1}; int moveY[3] = {-1, 1, 0}; int minCount, minY; void searchLadderY(int pX, int pY) { for (int i = ..
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14ABYKADACFAYh# SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com // 1210 Ladder 1 #include using namespace std; int ladderArray[100][100]; int moveX[3] = {0, 0, -1}; int moveY[3] = {-1, 1, 0}; int searchLadderY(int pX, int pY) { int x = pX; int y = pY; while (1) { if (x == 0) { return y;..
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV13_BWKACUCFAYh SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com //ArraySum #include using namespace std; int main(int argc, char** argv) { freopen("input (8).txt", "r", stdin); int testCase = 10; int arraySize = 100; int solveArray[arraySize][arraySize]; for (int i = 0; i < testCase; i++..