본문 바로가기

전체 글

(2341)
(C++) - 백준(BOJ) 2178번 : 미로 찾기 답 https://www.acmicpc.net/problem/2178 간단한 BFS문제였습니다. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748#include #include #include using namespace std;int h, w, N, M,cnt, d[101][101], a[101][101],c[101][101], dh[] = { 0,0,-1,1 }, dw[] = { -1,1,0,0};void BFS(int h, int w){ queue q; q.push(make_pair(h, w)); //체크 d[h][w] = ++cnt; c[h][w] = 1; while (!q.empty()) { ..
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 4963번:섬의 개수(DFS) 답 1234567891011121314151617181920212223242526272829303132333435#include #include using namespace std;int h,w,a[51][51], d[51][51], cnt, dh[] = { 0,0,-1,1,1,1,-1,-1 }, dw[] = { -1,1,0,0,-1,1,-1,1 };void DFS(int H, int W, int cnt){ d[H][W] = cnt; for (int i = 0; i
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 4963번:섬의 개수(BFS) 답 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647#include #include #include using namespace std;int d[51][51],a[51][51], cnt, dx[] = {0,0,-1,1,1,1,-1,-1}, dy[] = {-1,1,0,0,1,-1,1,-1 },w,h;void BFS(int x, int y, int cnt){ queue q; q.push(make_pair(x, y)); d[x][y] = cnt; while (!q.empty()) { x = q.front().first; y = q.front().second; q.pop(); for (int i = 0; i
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 2693번:N번째 큰 수 답 1234567891011121314#include #include using namespace std;int T,a[11];int main() { cin >> T; while (T--) { for (int i = 1; i > a[i]; sort(a + 1, a + 11); cout
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 1932번:숫자삼각형 답 D[i][j] = i번째 행에서 j를 선택할 때 최대값 (1 n; for (int i = 1; i a[i][j]; D[1][1] = a[1][1]; for (int i = 2; i
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 2667번:단지번호붙이기(DFS) 답 DFS로 푼 정답 입니다 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263#include #include using namespace std;int c[1000], a[26][26], d[26][26], N, cnt, dx[4] = { 0,0,1,-1 }, dy[4] = { 1,-1,0,0 };int compare(const void *a, const void *b){ return *(int*)a - *(int*)b;}void DFS(int i,int j, int cnt){ d[i][j] = 1; d[i][j] = cnt; { for(int k ..
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 2667번:단지번호붙이기(BFS) 답 BFS로 푼 답 입니다 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273#include #include #include using namespace std; int c[1000], a[26][26], d[26][26], N, cnt, dx[4] = { 0,0,1,-1 }, dy[4] = { 1,-1,0,0 };int compare(const void *a, const void *b){ return *(int*)a - *(int*)b;}void BFS(int i,int j, int cnt){ queue q; q...
(C++) - 백준(BOJ) 10179번 : 쿠폰 www.acmicpc.net/problem/10179 10179번: 쿠폰 당신은 어떤 물건이라도 20% 할인해주는 쿠폰을 가지고 있다. 원래 가격이 주어질 때, 쿠폰을 사용하면 얼마가 되는지 알려주는 프로그램을 작성하시오. www.acmicpc.net 출처] C언어 300제 - 013. 실수형 변수 이해하기 (float, double)|작성자 구마상 실수형은 float보다는 double을 쓰시는 것이 좋습니다 float 의 경우 1.2E-38 ~ 3.4E38 범위의 값을 저장하고, double 의 경우 2.2E-308 ~ 1.8E308 의 범위의 값을 저장합니다. 123 = 1.23E2 범위가 더 넓기 때문에 실수오차도 적습니다. [출처] C언어 300제 - 013. 실수형 변수 이해하기 (float, ..