/ Vijos /

记录详情

Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:33:73: error: 't' was not declared in this scope
                     f[s][x1][x2] = max(f[s][x1][x2], f[s - 1][x1][x2] + t);
                                                                         ^
/in/foo.cc:36:77: error: 't' was not declared in this scope
                     f[s][x1][x2] = max(f[s][x1][x2], f[s - 1][x1 - 1][x2] + t);
                                                                             ^
/in/foo.cc:39:77: error: 't' was not declared in this scope
                     f[s][x1][x2] = max(f[s][x1][x2], f[s - 1][x1][x2 - 1] + t);
                                                                             ^
/in/foo.cc:42:81: error: 't' was not declared in this scope
                     f[s][x1][x2] = max(f[s][x1][x2], f[s - 1][x1 - 1][x2 - 1] + t);
                                                                                 ^

信息

递交者
类型
递交
题目
P1493 传纸条
语言
C++
递交时间
2019-09-04 04:13:32
评测时间
2019-09-04 04:13:32
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes