0_0_22142500_19984.cpp:4:9: error: 'vector' does not name a type
typedef vector < int > vi ;
^
0_0_22142500_19984.cpp:5:9: error: 'map' does not name a type
typedef map < LL , int > mpvi ;
^
0_0_22142500_19984.cpp:16:1: error: 'mpvi' does not name a type
mpvi dp[2] ;
^
0_0_22142500_19984.cpp:17:1: error: 'mpvi' does not name a type
mpvi :: iterator it ;
^
0_0_22142500_19984.cpp: In function 'void preprocess()':
0_0_22142500_19984.cpp:58:9: error: 'dp' was not declared in this scope
dp[0].clear () ;
^
0_0_22142500_19984.cpp:63:13: error: 'mpvi' was not declared in this scope
mpvi& pre = dp[cur ^ 1] ;
^
0_0_22142500_19984.cpp:63:19: error: 'pre' was not declared in this scope
mpvi& pre = dp[cur ^ 1] ;
^
0_0_22142500_19984.cpp:64:19: error: 'it' was not declared in this scope
for ( it = pre.begin () ; it != pre.end () ; ++ it ) {
^
0_0_22142500_19984.cpp:72:55: error: 'min' was not declared in this scope
nxt[k] = min ( nxt[k] , x ) ;
^
0_0_22142500_19984.cpp: In function 'int main()':
0_0_22142500_19984.cpp:105:23: error: 'scanf' was not declared in this scope
scanf ( "%d" , &T ) ;
^
0_0_22142500_19984.cpp:108:54: error: 'printf' was not declared in this scope
printf ( "Case #%d: %d\n" , i , res[n][m][k] ) ;
^
|