| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1193986 | uranhishig | Road Closures (APIO21_roads) | C++20 | Compilation error | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include <vector>
using namespace std;
const int mx = 2e5 + 5;
vector<vector<int>> adj(mx, false);
vector<bool> vis(mx);
void dfs (int x) {
if (vis[x]) {
return;
}
vis[x] = 1;
for (int X: adj[x]) {
if(!vis[X]) {
dfs(X);
}
}
}
vector<long long> minimum_closure_costs(int N, vector<int> U={0, 0, 0, 2}, vector<int> V={1, 2, 3, 4}, vector<int> W={1, 4, 3, 2}) {
priority_queue<pair<int, int>>q;
vector<pair<int,int>>v[mx];
vector<long long> ans(N);
long long a,b,c,d,e,f[mx];
cin>>a>>b;
for(int i=0;i<b;i++){
cin>>c>>d>>e;
v[c].push_back({d,e});
}
q.push({-1,1});
while(!q.empty()){
long long q1=-q.top().first,q2=q.top().second;
q.pop();
if(f[q2]==0){
f[q2]=q1;
for(int i=0;i<v[q2].size();i++){
if(f[v[q2][i].first]==0){
q.push({-q1-v[q2][i].second,v[q2][i].first});
}
}
}
}
for (int i = 0; i < n; i++) {
ans[i] = f[i] - 1;
}
return ans<long long>(N, 0);
}
Compilation message (stderr)
roads.cpp:7:34: error: no matching function for call to 'std::vector<std::vector<int> >::vector(const int&, bool)'
7 | vector<vector<int>> adj(mx, false);
| ^
In file included from /usr/include/c++/11/vector:67,
from /usr/include/c++/11/functional:62,
from /usr/include/c++/11/pstl/glue_algorithm_defs.h:13,
from /usr/include/c++/11/algorithm:74,
from /usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:65,
from roads.cpp:1:
/usr/include/c++/11/bits/stl_vector.h:653:9: note: candidate: 'template<class _InputIterator, class> std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = _InputIterator; <template-parameter-2-2> = <template-parameter-1-2>; _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
653 | vector(_InputIterator __first, _InputIterator __last,
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:653:9: note: template argument deduction/substitution failed:
roads.cpp:7:34: note: deduced conflicting types for parameter '_InputIterator' ('int' and 'bool')
7 | vector<vector<int>> adj(mx, false);
| ^
In file included from /usr/include/c++/11/vector:67,
from /usr/include/c++/11/functional:62,
from /usr/include/c++/11/pstl/glue_algorithm_defs.h:13,
from /usr/include/c++/11/algorithm:74,
from /usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:65,
from roads.cpp:1:
/usr/include/c++/11/bits/stl_vector.h:625:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::initializer_list<_Tp>, const allocator_type&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >]'
625 | vector(initializer_list<value_type> __l,
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:625:43: note: no known conversion for argument 1 from 'const int' to 'std::initializer_list<std::vector<int> >'
625 | vector(initializer_list<value_type> __l,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/usr/include/c++/11/bits/stl_vector.h:607:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, const allocator_type&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >]'
607 | vector(vector&& __rv, const allocator_type& __m)
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:607:23: note: no known conversion for argument 1 from 'const int' to 'std::vector<std::vector<int> >&&'
607 | vector(vector&& __rv, const allocator_type& __m)
| ~~~~~~~~~^~~~
/usr/include/c++/11/bits/stl_vector.h:589:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, const allocator_type&, std::false_type) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >; std::false_type = std::integral_constant<bool, false>]'
589 | vector(vector&& __rv, const allocator_type& __m, false_type)
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:589:7: note: candidate expects 3 arguments, 2 provided
/usr/include/c++/11/bits/stl_vector.h:585:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, const allocator_type&, std::true_type) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >; std::true_type = std::integral_constant<bool, true>]'
585 | vector(vector&& __rv, const allocator_type& __m, true_type) noexcept
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:585:7: note: candidate expects 3 arguments, 2 provided
/usr/include/c++/11/bits/stl_vector.h:575:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&, const allocator_type&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >]'
575 | vector(const vector& __x, const allocator_type& __a)
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:575:28: note: no known conversion for argument 1 from 'const int' to 'const std::vector<std::vector<int> >&'
575 | vector(const vector& __x, const allocator_type& __a)
| ~~~~~~~~~~~~~~^~~
/usr/include/c++/11/bits/stl_vector.h:572:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
572 | vector(vector&&) noexcept = default;
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:572:7: note: candidate expects 1 argument, 2 provided
/usr/include/c++/11/bits/stl_vector.h:553:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
553 | vector(const vector& __x)
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:553:7: note: candidate expects 1 argument, 2 provided
/usr/include/c++/11/bits/stl_vector.h:522:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>::size_type, const value_type&, const allocator_type&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::size_type = long unsigned int; std::vector<_Tp, _Alloc>::value_type = std::vector<int>; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >]'
522 | vector(size_type __n, const value_type& __value,
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:522:47: note: no known conversion for argument 2 from 'bool' to 'const value_type&' {aka 'const std::vector<int>&'}
522 | vector(size_type __n, const value_type& __value,
| ~~~~~~~~~~~~~~~~~~^~~~~~~
/usr/include/c++/11/bits/stl_vector.h:510:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>::size_type, const allocator_type&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::size_type = long unsigned int; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >]'
510 | vector(size_type __n, const allocator_type& __a = allocator_type())
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:510:51: note: no known conversion for argument 2 from 'bool' to 'const allocator_type&' {aka 'const std::allocator<std::vector<int> >&'}
510 | vector(size_type __n, const allocator_type& __a = allocator_type())
| ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/11/bits/stl_vector.h:497:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector(const allocator_type&) [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<int> >]'
497 | vector(const allocator_type& __a) _GLIBCXX_NOEXCEPT
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:497:7: note: candidate expects 1 argument, 2 provided
/usr/include/c++/11/bits/stl_vector.h:487:7: note: candidate: 'std::vector<_Tp, _Alloc>::vector() [with _Tp = std::vector<int>; _Alloc = std::allocator<std::vector<int> >]'
487 | vector() = default;
| ^~~~~~
/usr/include/c++/11/bits/stl_vector.h:487:7: note: candidate expects 0 arguments, 2 provided
roads.cpp: In function 'std::vector<long long int> minimum_closure_costs(int, std::vector<int>, std::vector<int>, std::vector<int>)':
roads.cpp:47:29: error: 'n' was not declared in this scope
47 | for (int i = 0; i < n; i++) {
| ^
roads.cpp:50:20: error: expected primary-expression before 'long'
50 | return ans<long long>(N, 0);
| ^~~~
roads.cpp:50:20: error: expected ';' before 'long'
50 | return ans<long long>(N, 0);
| ^~~~
| ;
roads.cpp:50:29: error: expected unqualified-id before '>' token
50 | return ans<long long>(N, 0);
| ^