Submission #98899

#TimeUsernameProblemLanguageResultExecution timeMemory
98899Dullness토마토 (3차원) (KOI13_tomato3D)C11
Compilation error
0 ms0 KiB
#include <stdio.h> #define MAX 100*100*100+10 int board[101][101][101]; int x1, y1, x2, y2, N, M, L; int min = 99999; typedef struct tomato{ int x; int y; int z; int day; }TOMATO; TOMATO queue[MAX]; int head, tail; int dx[4] = { 1, 0, -1, 0, 0, 0 }; int dy[4] = { 0, -1, 0, 1, 0, 0 }; int dz[8] = { 0, 0, 0, 0, 1, -1 }; void enqueue(int x, int y, int z, int day); TOMATO dequeue(); TOMATO popped; TOMATO Next; void main(){ int x, y, cnt, i, j, k, sum; sum = 0; cnt = 0; scanf("%d %d %d", &M, &N, &L); for (k = 0; k < L; k++){ for (i = 0; i < N; i++){ for (j = 0; j < M; j++){ scanf(" %d", &board[k + 1][i + 1][j + 1]); if (board[k + 1][i + 1][j + 1] == 1) enqueue(i + 1, j + 1, k +1 , 0); } } } while (head != tail){ popped = dequeue(); x = popped.x; y = popped.y; cnt = popped.z; for (i = 0; i < 6; i++){ if (!(x + dx[i] > 0 && x + dx[i] < (N + 1))) continue; if (!(y + dy[i] > 0 && y + dy[i] < (M + 1))) continue; if (!(z + dz[i] > 0 && z + dz[i] < (L + M))) continue; if (board[z+dz[i]][x + dx[i]][y + dy[i]] == 1) continue; if (board[z + dz[i]][x + dx[i]][y + dy[i]] == -1) continue; if (board[z + dz[i]][x + dx[i]][y + dy[i]] == 0){ enqueue(x + dx[i], y + dy[i], z+ dz[i], cnt + 1); } } } min = cnt; for (k = 0; k < L; k++){ for (i = 0; i < N; i++){ for (j = 0; j < M; j++){ if (board[k + i][i + 1][j + 1] == 0){ min = -1; break; } } } } printf("%d", min); } void enqueue(int x, int y, int z, int day){ tail++; tail %= MAX; queue[tail].x = x; queue[tail].y = y; queue[tail].z = z; queue[tail].day = day; board[z][x][y] = 1; return; } TOMATO dequeue(){ head++; head %= MAX; TOMATO out; out.x = queue[head].x; out.y = queue[head].y; out.z = queue[head].z; return out; }

Compilation message (stderr)

cc.c:5:9: warning: built-in function 'y1' declared as non-function
 int x1, y1, x2, y2, N, M, L;
         ^~
cc.c:13:28: warning: excess elements in array initializer
 int dx[4] = { 1, 0, -1, 0, 0, 0 };
                            ^
cc.c:13:28: note: (near initialization for 'dx')
cc.c:13:31: warning: excess elements in array initializer
 int dx[4] = { 1, 0, -1, 0, 0, 0 };
                               ^
cc.c:13:31: note: (near initialization for 'dx')
cc.c:14:28: warning: excess elements in array initializer
 int dy[4] = { 0, -1, 0, 1, 0, 0 };
                            ^
cc.c:14:28: note: (near initialization for 'dy')
cc.c:14:31: warning: excess elements in array initializer
 int dy[4] = { 0, -1, 0, 1, 0, 0 };
                               ^
cc.c:14:31: note: (near initialization for 'dy')
cc.c:20:6: warning: return type of 'main' is not 'int' [-Wmain]
 void main(){
      ^~~~
cc.c: In function 'main':
cc.c:39:10: error: 'z' undeclared (first use in this function)
    if (!(z + dz[i] > 0 && z + dz[i] < (L + M))) continue;
          ^
cc.c:39:10: note: each undeclared identifier is reported only once for each function it appears in
cc.c:22:26: warning: variable 'sum' set but not used [-Wunused-but-set-variable]
  int x, y, cnt, i, j, k, sum;
                          ^~~
cc.c:24:2: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d %d", &M, &N, &L);
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc.c:28:5: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result]
     scanf(" %d", &board[k + 1][i + 1][j + 1]);
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~