0_0_30870730_7435.cpp: In function 'int main()':
0_0_30870730_7435.cpp:14:8: error: 'cin' was not declared in this scope
while(cin>>T){
^
0_0_30870730_7435.cpp:17:21: error: 'sort' was not declared in this scope
sort(s+1,s+T+1,cmp);
^
0_0_30870730_7435.cpp:25:44: error: 'min' was not declared in this scope
dp[i][i]=min(dp[i][i],dp[i-1][j]+s[i].c);
^
0_0_30870730_7435.cpp:31:24: error: 'min' was not declared in this scope
ans=min(ans,dp[T][i]);
^
0_0_30870730_7435.cpp:32:24: error: 'printf' was not declared in this scope
printf("%I64d\n", ans);
^
|