0_0_25574533_23183.cpp: In function 'void mul(int (*)[55], int (*)[55], int (*)[55])':
0_0_25574533_23183.cpp:11:22: error: 'max' is not a member of 'std'
rep(k) f[i][j] = std::max(f[i][j] ,a[i][k]+b[k][j]);
^
0_0_25574533_23183.cpp: In function 'int main()':
0_0_25574533_23183.cpp:23:18: error: 'max' is not a member of 'std'
g[x][y] = std::max(g[x][y],z);
^
0_0_25574533_23183.cpp:29:34: error: 'max' is not a member of 'std'
rep(k)rep(i)rep(j) d[i][j] = std::max(d[i][j],d[i][k]+d[k][j]);
^
0_0_25574533_23183.cpp:32:36: error: 'max' is not a member of 'std'
rep(i)rep(j)rep(k) f[i][j] = std::max(f[i][j],b[x][i][k]+d[k][j]);
^
0_0_25574533_23183.cpp:41:18: error: 'max' is not a member of 'std'
rep(i) z = std::max(z,a[A][x][i]+b[B][i][y]);
^
|