'SWExpert' 태그의 글 목록 (2 Page)
본문 바로가기
728x90
반응형

SWExpert19

2021.11.08_1218-괄호짝짓기 소스코드 #include #include #include #include using namespace std; int N, answer; int chk[300]; string friends; void initData(); void chkFriends(); int main(int argc, char** argv) { int test_case; /* 여러 개의 테스트 케이스가 주어지므로, 각각을 처리합니다. */ for (test_case = 1; test_case > friends; } 설계 사실 그냥 짝이 있는지 검사 한것이라 어려운것 없었음 원래는 제대로 하려면 스택으로 해야함 내생각이지만 실수 ()의 경우 -1 차이 나는것 제대로 체큰 안한 실수 chk를 0으로 초기화 안한 실수 함 문제 링크 121.. 2021. 11. 8.
2021.11.07_8673-코딩토너먼트1 소스코드 #include #include #include #include using namespace std; void initData();//초기화 int K; int answer; vectornum; void codingTest();//코딩 테스트 대결 int main(int argc, char** argv) { int test_case; int T; cin >> T; /* 여러 개의 테스트 케이스가 주어지므로, 각각을 처리합니다. */ for (test_case = 1; test_case 2021. 11. 8.
2021.10.31_1226-미로1,1227-미로2 소스코드 #include #include #include #include using namespace std; #define SIZE 16 //미로1 //#define SIZE 100//미로2 char board[SIZE][SIZE]; int visit[SIZE][SIZE]; int dy[] = { -1,0,1,0 }; int dx[] = { 0,1,0,-1 }; int answer; void initData();//초기화 및 초기입력 void miroSearch();//미로 탐색 struct Data { int y, x; }s,e; int main() { int test_case; int T; for (test_case = 1; test_case > T; initData(); miroSearch(); .. 2021. 10. 31.
2021.10.30_1220-Magnetic 소스코드 #include #include #include #include using namespace std; #define SIZE 100 struct Data { int y, x; }; int answer; int board[SIZE][SIZE]; vectormagnetic; void initData();//초기화 및 초기 입력 void moveMagnetic();//마그네틱 이동 int main() { int test_case; int T; for (test_case = 1; test_case =SIZE) { board[i][j] = 0; continue; } if (board[i+1][j] == 0) { board[i][j] = 0; board[i+1][j] = 1; i++; flag = 1; }.. 2021. 10. 30.
728x90
반응형