In file included from /usr/include/c++/10/random:49,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/random.h: In instantiation of 'class std::uniform_real_distribution<int>':
longesttrip.cpp:67:34: required from here
/usr/include/c++/10/bits/random.h:1733:56: error: static assertion failed: result_type must be a floating point type
1733 | static_assert(std::is_floating_point<_RealType>::value,
| ^~~~~
longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:69:13: error: no match for call to '(std::uniform_real_distribution<int>) (std::mersenne_twister_engine<long unsigned int, 32, 624, 397, 31, 2567483615, 11, 4294967295, 7, 2636928640, 15, 4022730752, 18, 1812433253>::result_type)'
69 | a=R(gen());
| ^
In file included from /usr/include/c++/10/random:49,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/random.h:1849:2: note: candidate: 'std::uniform_real_distribution<_RealType>::result_type std::uniform_real_distribution<_RealType>::operator()(_UniformRandomNumberGenerator&) [with _UniformRandomNumberGenerator = long unsigned int; _RealType = int; std::uniform_real_distribution<_RealType>::result_type = int]' (near match)
1849 | operator()(_UniformRandomNumberGenerator& __urng)
| ^~~~~~~~
/usr/include/c++/10/bits/random.h:1849:2: note: conversion of argument 1 would be ill-formed:
longesttrip.cpp:69:11: error: cannot bind non-const lvalue reference of type 'long unsigned int&' to an rvalue of type 'std::mersenne_twister_engine<long unsigned int, 32, 624, 397, 31, 2567483615, 11, 4294967295, 7, 2636928640, 15, 4022730752, 18, 1812433253>::result_type' {aka 'long unsigned int'}
69 | a=R(gen());
| ~~~^~
In file included from /usr/include/c++/10/random:49,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/random.h:1854:2: note: candidate: 'template<class _UniformRandomNumberGenerator> std::uniform_real_distribution<_RealType>::result_type std::uniform_real_distribution<_RealType>::operator()(_UniformRandomNumberGenerator&, const std::uniform_real_distribution<_RealType>::param_type&) [with _UniformRandomNumberGenerator = _UniformRandomNumberGenerator; _RealType = int]'
1854 | operator()(_UniformRandomNumberGenerator& __urng,
| ^~~~~~~~
/usr/include/c++/10/bits/random.h:1854:2: note: template argument deduction/substitution failed:
longesttrip.cpp:69:13: note: candidate expects 2 arguments, 1 provided
69 | a=R(gen());
| ^
longesttrip.cpp:70:13: error: no match for call to '(std::uniform_real_distribution<int>) (std::mersenne_twister_engine<long unsigned int, 32, 624, 397, 31, 2567483615, 11, 4294967295, 7, 2636928640, 15, 4022730752, 18, 1812433253>::result_type)'
70 | b=R(gen());
| ^
In file included from /usr/include/c++/10/random:49,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/random.h:1849:2: note: candidate: 'std::uniform_real_distribution<_RealType>::result_type std::uniform_real_distribution<_RealType>::operator()(_UniformRandomNumberGenerator&) [with _UniformRandomNumberGenerator = long unsigned int; _RealType = int; std::uniform_real_distribution<_RealType>::result_type = int]' (near match)
1849 | operator()(_UniformRandomNumberGenerator& __urng)
| ^~~~~~~~
/usr/include/c++/10/bits/random.h:1849:2: note: conversion of argument 1 would be ill-formed:
longesttrip.cpp:70:11: error: cannot bind non-const lvalue reference of type 'long unsigned int&' to an rvalue of type 'std::mersenne_twister_engine<long unsigned int, 32, 624, 397, 31, 2567483615, 11, 4294967295, 7, 2636928640, 15, 4022730752, 18, 1812433253>::result_type' {aka 'long unsigned int'}
70 | b=R(gen());
| ~~~^~
In file included from /usr/include/c++/10/random:49,
from longesttrip.cpp:2:
/usr/include/c++/10/bits/random.h:1854:2: note: candidate: 'template<class _UniformRandomNumberGenerator> std::uniform_real_distribution<_RealType>::result_type std::uniform_real_distribution<_RealType>::operator()(_UniformRandomNumberGenerator&, const std::uniform_real_distribution<_RealType>::param_type&) [with _UniformRandomNumberGenerator = _UniformRandomNumberGenerator; _RealType = int]'
1854 | operator()(_UniformRandomNumberGenerator& __urng,
| ^~~~~~~~
/usr/include/c++/10/bits/random.h:1854:2: note: template argument deduction/substitution failed:
longesttrip.cpp:70:13: note: candidate expects 2 arguments, 1 provided
70 | b=R(gen());
| ^
longesttrip.cpp:76:22: warning: narrowing conversion of 'a' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
76 | if(are_connected({a},{i}))S.back().push_back(i);
| ^
longesttrip.cpp:76:22: warning: narrowing conversion of 'a' from 'll' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:90:29: warning: narrowing conversion of 'A.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
90 | if(are_connected({A.back()},{T[0]})){
| ~~~~~~^~
longesttrip.cpp:90:29: warning: narrowing conversion of 'A.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:90:39: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
90 | if(are_connected({A.back()},{T[0]})){
| ^
longesttrip.cpp:90:39: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:93:34: warning: narrowing conversion of 'B.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
93 | else if(are_connected({B.back()},{T[0]})){
| ~~~~~~^~
longesttrip.cpp:93:34: warning: narrowing conversion of 'B.std::vector<long long int>::back()' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:93:44: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
93 | else if(are_connected({B.back()},{T[0]})){
| ^
longesttrip.cpp:93:44: warning: narrowing conversion of 'T.std::vector<long long int>::operator[](0)' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
longesttrip.cpp:103:11: error: could not convert 'A' from 'vector<long long int>' to 'vector<int>'
103 | return A;
| ^
| |
| vector<long long int>