1. 문제
https://codeup.kr/problem.php?id=1098
2. 소스코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include <iostream>
#include <stdlib.h>
using namespace std;
typedef struct _stick{
int length;
int direction; // 0이면 가로 1이면 세로
int x, y;
}Stick;
void InsertStick(Stick * sp, int Go[][100])
{
int i, j;
if(!sp->direction)
for(i = 1, j = sp->y; i <= (sp->length) ; j++, i++)
{
Go[sp->x][j]++;
}
else
for(i = sp->x, j = 1; j <= (sp->length) ; i++, j++)
{
Go[i][sp->y]++;
}
}
int main (void){
int N, h, w, i, j;
cin >> h >> w;
cin >>N;
int Go[h+1][100] = {0};
Stick *arr[N] = {NULL}; //필수 구조체 포인터배열
for(i = 0 ; i < N; i++)
{
arr[i] = (Stick *)malloc(sizeof(Stick));
cin >> arr[i]->length >> arr[i]->direction >> arr[i]->x >> arr[i]-> y;
InsertStick(arr[i], Go);
}
for(i = 1; i <= h ; i++)
{
for(j = 1; j <= w ; j++)
{
cout << Go[i][j] << ' ';
}
cout << endl;
}
for(i = 0 ; i < N ; i++)
{
free(arr[i]);
}
return 0;
}
|
Stick * arr[i] = (Stick *)malloc(sizeof(Stick))이 안먹힌다.
사전에 구조체 포인터 배열을 선언해주어야만 먹힌다.
+
2차원 배열 인자로 넘길경우 2번재 element 갯수
int arr[][]일 일경우 2번째 arr[][크기] '크기'를 반드시 넘겨줘야한다.
for(i=1; i <= h; i++, puts("")) << 같이 줄바꿈 스킬. 체크하고 넘어가자 ㅎㅎ
'C > C++' 카테고리의 다른 글
Copy Constructor (0) | 2019.11.20 |
---|---|
character array vs String (0) | 2019.11.10 |
[백준 2752] 세 수 정렬하기 (0) | 2019.10.28 |
[코드업 기초 100제 - 85번] 소리 파일 저장용량 계산하기 (0) | 2019.10.07 |
[C++] Reference (0) | 2019.10.05 |