0_0_26627835_12826.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_26627835_12826.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_26627835_12826.cpp:3:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_26627835_12826.cpp:4:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_26627835_12826.cpp:8:9: error: '__int64' does not name a type
typedef __int64 LL;
^
0_0_26627835_12826.cpp:11:1: error: 'LL' does not name a type
LL flag1z[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:12:1: error: 'LL' does not name a type
LL flag1f[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:13:1: error: 'LL' does not name a type
LL flag2z[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:14:1: error: 'LL' does not name a type
LL flag2f[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:16:1: error: 'LL' does not name a type
LL dpz[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:17:1: error: 'LL' does not name a type
LL dpf[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:18:1: error: 'LL' does not name a type
LL ans[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:20:1: error: 'LL' does not name a type
LL si[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:21:1: error: 'LL' does not name a type
LL yoz[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:22:1: error: 'LL' does not name a type
LL rec[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:23:1: error: 'LL' does not name a type
LL tri[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp:25:1: error: 'LL' does not name a type
LL d[maxn][maxn][maxn];
^
0_0_26627835_12826.cpp: In function 'void init()':
0_0_26627835_12826.cpp:29:12: error: 'flag1z' was not declared in this scope
memset(flag1z,0,sizeof(flag1z));
^
0_0_26627835_12826.cpp:29:35: error: 'memset' was not declared in this scope
memset(flag1z,0,sizeof(flag1z));
^
0_0_26627835_12826.cpp:30:12: error: 'flag1f' was not declared in this scope
memset(flag1f,0,sizeof(flag1f));
^
0_0_26627835_12826.cpp:31:12: error: 'flag2z' was not declared in this scope
memset(flag2z,0,sizeof(flag2z));
^
0_0_26627835_12826.cpp:32:12: error: 'flag2f' was not declared in this scope
memset(flag2f,0,sizeof(flag2f));
^
0_0_26627835_12826.cpp: In function 'void solve1(int, int, int, int)':
0_0_26627835_12826.cpp:39:5: error: 'flag1z' was not declared in this scope
flag1z[x][y][z]++;
^
0_0_26627835_12826.cpp:42:5: error: 'flag2z' was not declared in this scope
flag2z[x][y+1][z]++;
^
0_0_26627835_12826.cpp:45:5: error: 'flag1f' was not declared in this scope
flag1f[x+a][y][z]++;
^
0_0_26627835_12826.cpp:48:5: error: 'flag2f' was not declared in this scope
flag2f[x+a][y+a+1][z]++;
^
0_0_26627835_12826.cpp: In function 'void solve2()':
0_0_26627835_12826.cpp:57:9: error: 'flag1z' was not declared in this scope
flag1z[i][j][k]+=flag1z[i-1][j-1][k-1];
^
0_0_26627835_12826.cpp:58:9: error: 'flag2z' was not declared in this scope
flag2z[i][j][k]+=flag2z[i-1][j-1][k-1];
^
0_0_26627835_12826.cpp:59:9: error: 'flag1f' was not declared in this scope
flag1f[i][j][k]+=flag1f[i][j-1][k-1];
^
0_0_26627835_12826.cpp:60:9: error: 'flag2f' was not declared in this scope
flag2f[i][j][k]+=flag2f[i][j][k-1];
^
0_0_26627835_12826.cpp:64:9: error: 'dpz' was not declared in this scope
dpz[i][j][k]=dpz[i-1][j][k]+flag1z[i][j][k]-flag1f[i][j][k];
^
0_0_26627835_12826.cpp:64:37: error: 'flag1z' was not declared in this scope
dpz[i][j][k]=dpz[i-1][j][k]+flag1z[i][j][k]-flag1f[i][j][k];
^
0_0_26627835_12826.cpp:64:53: error: 'flag1f' was not declared in this scope
dpz[i][j][k]=dpz[i-1][j][k]+flag1z[i][j][k]-flag1f[i][j][k];
^
0_0_26627835_12826.cpp:65:9: error: 'dpf' was not declared in this scope
dpf[i][j][k]=dpf[i-1][j-1][k]+flag2z[i][j][k]-flag2f[i][j][k];
^
0_0_26627835_12826.cpp:65:39: error: 'flag2z' was not declared in this scope
dpf[i][j][k]=dpf[i-1][j-1][k]+flag2z[i][j][k]-flag2f[i][j][k];
^
0_0_26627835_12826.cpp:65:55: error: 'flag2f' was not declared in this scope
dpf[i][j][k]=dpf[i-1][j-1][k]+flag2z[i][j][k]-flag2f[i][j][k];
^
0_0_26627835_12826.cpp:66:9: error: 'ans' was not declared in this scope
ans[i][j][k]=ans[i][j-1][k]+dpz[i][j][k]-dpf[i][j][k];
^
0_0_26627835_12826.cpp:70:17: error: 'd' was not declared in this scope
d[i][j][k]=d[i][j][k-1]+ans[i][j][k];
^
0_0_26627835_12826.cpp:70:41: error: 'ans' was not declared in this scope
d[i][j][k]=d[i][j][k-1]+ans[i][j][k];
^
0_0_26627835_12826.cpp:71:17: error: 'yoz' was not declared in this scope
yoz[i][j][k]=yoz[i][j-1][k-1]+d[i][j][k];
^
0_0_26627835_12826.cpp:72:17: error: 'si' was not declared in this scope
si[i][j][k]=si[i-1][j-1][k-1]+yoz[i][j][k];
^
0_0_26627835_12826.cpp:73:17: error: 'rec' was not declared in this scope
rec[i][j][k]=rec[i][j-1][k]+d[i][j][k];
^
0_0_26627835_12826.cpp:74:17: error: 'tri' was not declared in this scope
tri[i][j][k]=tri[i-1][j-1][k]+rec[i][j][k];
^
0_0_26627835_12826.cpp:78:17: error: 'yoz' was not declared in this scope
yoz[i][j][k]+=yoz[i-1][j][k];
^
0_0_26627835_12826.cpp:79:17: error: 'rec' was not declared in this scope
rec[i][j][k]+=rec[i-1][j][k];
^
0_0_26627835_12826.cpp: At global scope:
0_0_26627835_12826.cpp:83:1: error: 'LL' does not name a type
LL solve3(int x,int y,int z,int a)
^
0_0_26627835_12826.cpp: In function 'int main()':
0_0_26627835_12826.cpp:92:34: error: 'scanf' was not declared in this scope
while(scanf("%d%d%d",&n,&m,&q)!=EOF)
^
0_0_26627835_12826.cpp:92:37: error: 'EOF' was not declared in this scope
while(scanf("%d%d%d",&n,&m,&q)!=EOF)
^
0_0_26627835_12826.cpp:94:17: error: expected ';' at end of input
for(i=0;i
^
0_0_26627835_12826.cpp:94:17: error: expected primary-expression at end of input
0_0_26627835_12826.cpp:94:17: error: expected ')' at end of input
0_0_26627835_12826.cpp:94:17: error: expected statement at end of input
0_0_26627835_12826.cpp:94:17: error: expected '}' at end of input
0_0_26627835_12826.cpp:94:17: error: expected '}' at end of input
|