0_0_29717636_969.cpp: In function 'void Floyd()':
0_0_29717636_969.cpp:25:43: error: 'min' was not declared in this scope
G[i][j] = min(G[i][j], G[i][k]+G[k][j]);
^
0_0_29717636_969.cpp:25:43: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_29717636_969.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_29717636_969.cpp: In function 'int main()':
0_0_29717636_969.cpp:30:5: error: 'cin' was not declared in this scope
cin>>t;
^
0_0_29717636_969.cpp:30:5: note: suggested alternative:
In file included from 0_0_29717636_969.cpp:1:0:
GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:60:18: note: 'std::cin'
extern istream cin; /// Linked to standard input
^
0_0_29717636_969.cpp:39:28: error: 'min' was not declared in this scope
G[u][v] = min(G[u][v], w);
^
0_0_29717636_969.cpp:39:28: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_29717636_969.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_29717636_969.cpp:44:4: error: 'cout' was not declared in this scope
cout << 0 << endl;
^
0_0_29717636_969.cpp:44:4: note: suggested alternative:
In file included from 0_0_29717636_969.cpp:1:0:
GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:61:18: note: 'std::cout'
extern ostream cout; /// Linked to standard output
^
0_0_29717636_969.cpp:44:17: error: 'endl' was not declared in this scope
cout << 0 << endl;
^
0_0_29717636_969.cpp:44:17: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39:0,
from 0_0_29717636_969.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:564:5: note: 'std::endl'
endl(basic_ostream<_CharT, _Traits>& __os)
^
0_0_29717636_969.cpp:55:66: error: 'min' was not declared in this scope
dp[i][cur] = min(dp[i][cur], dp[k][cur^(1<<(i-1))]+G[k][i]);
^
0_0_29717636_969.cpp:55:66: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_29717636_969.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_29717636_969.cpp:57:68: error: 'min' was not declared in this scope
for(int i=2; i<=n; i++) ans=min(ans,dp[i][(1<<n)-1]+G[i][1]);
^
0_0_29717636_969.cpp:57:68: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_29717636_969.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_29717636_969.cpp:58:9: error: 'cout' was not declared in this scope
cout << ans << endl;
^
0_0_29717636_969.cpp:58:9: note: suggested alternative:
In file included from 0_0_29717636_969.cpp:1:0:
GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:61:18: note: 'std::cout'
extern ostream cout; /// Linked to standard output
^
0_0_29717636_969.cpp:58:25: error: 'endl' was not declared in this scope
cout << ans << endl;
^
0_0_29717636_969.cpp:58:25: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39:0,
from 0_0_29717636_969.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:564:5: note: 'std::endl'
endl(basic_ostream<_CharT, _Traits>& __os)
^
|