Submission #66459
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | #include <algorithm> #include <iomanip> #include <array> #include <bitset> #include <cassert> #include <cmath> #include <cstdio> #include <deque> #include <functional> #include <iostream> #include <iterator> #include <map> #include <queue> #include <set> #include <string> #include <sstream> #include <unordered_map> #include <unordered_set> #include <utility> #include <numeric> #include <vector> using namespace std; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif #define GET_MACRO(_1, _2, _3, NAME, ...) NAME #define _rep(i, n) _rep2(i, 0, n) #define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++) #define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() using i64 = long long ; template < class T, class U> bool chmin(T& a, const U& b) { return (b < a) ? (a = b, true ) : false ; } template < class T, class U> bool chmax(T& a, const U& b) { return (b > a) ? (a = b, true ) : false ; } template < typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j]; return i;} template < typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<< ' ' <<v[i]; return s.str().substr(1);} template < typename T>ostream& operator<<(ostream&o,vector<T>&v){ if (v.size())o<<join(v); return o;} template < typename T>string join(vector<vector<T>>&vv){string s= "\n" ;rep(i,vv.size())s+=join(vv[i])+ "\n" ; return s;} template < typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){ if (vv.size())o<<join(vv); return o;} template < class T> using pq = priority_queue<T, vector<T>, greater<T>>; int n; i64 t; vector<vector< long long int >> edge(100010, vector< int >{}); vector<i64> C(100010); vector<i64> P(100010); i64 ans = 0; void dfs( int u, int p, i64 num, i64 sum) { num = num * 10 + C[u]; num = num % t; if (num%t == 0) sum += P[u]; ans += sum; for (auto v : edge[u]) { if (v == p) continue ; dfs(v, u, num, sum); } } int main() { cin >> n >> t; rep(i, n - 1) { int u, v; cin >> u >> v; u--; v--; edge[u].push_back(v); edge[v].push_back(u); } rep(i, n) cin >> C[i] >> P[i]; dfs(0, -1, 0, 0); cout << ans << endl; return 0; } |
ステータス
項目 | データ |
---|---|
問題 | 1497 - Walkin' on Numbered Tree |
ユーザー名 | gunmaneko |
投稿日時 | 2021-05-04 23:24:29 |
言語 | C++17 |
状態 | Compile Error |
得点 | 0 |
ソースコード長 | 2371 Byte |
最大実行時間 | - |
最大メモリ使用量 |
コンパイルメッセージ
./Main.cpp:47:58: error: no matching function for call to ‘std::vector<std::vector<long long int> >::vector(int, std::vector<int>)’ vector<vector<long long int >> edge(100010, vector<int>{}); ^ In file included from /usr/local/gcc-8.2.0/include/c++/8.2.0/vector:64, from /usr/local/gcc-8.2.0/include/c++/8.2.0/functional:62, from ./Main.cpp:9: /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:543:2: note: candidate: ‘template<class _InputIterator, class> std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&)’ vector(_InputIterator __first, _InputIterator __last, ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:543:2: note: template argument deduction/substitution failed: ./Main.cpp:47:58: note: deduced conflicting types for parameter ‘_InputIterator’ (‘int’ and ‘std::vector<int>’) vector<vector<long long int >> edge(100010, vector<int>{}); ^ In file included from /usr/local/gcc-8.2.0/include/c++/8.2.0/vector:64, from /usr/local/gcc-8.2.0/include/c++/8.2.0/functional:62, from ./Main.cpp:9: /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:515:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(std::initializer_list<_Tp>, const allocator_type&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<long long int> >]’ vector(initializer_list<value_type> __l, ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:515:7: note: no known conversion for argument 1 from ‘int’ to ‘std::initializer_list<std::vector<long long int> >’ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:490:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, const allocator_type&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<long long int> >]’ vector(vector&& __rv, const allocator_type& __m) ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:490:7: note: no known conversion for argument 1 from ‘int’ to ‘std::vector<std::vector<long long int> >&&’ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:480:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&, const allocator_type&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<long long int> >]’ vector(const vector& __x, const allocator_type& __a) ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:480:7: note: no known conversion for argument 1 from ‘int’ to ‘const std::vector<std::vector<long long int> >&’ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:476:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >]’ vector(vector&& __x) noexcept ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:476:7: note: candidate expects 1 argument, 2 provided /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:458:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >]’ vector(const vector& __x) ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:458:7: note: candidate expects 1 argument, 2 provided /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:427:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>::size_type, const value_type&, const allocator_type&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >; std::vector<_Tp, _Alloc>::size_type = long unsigned int; std::vector<_Tp, _Alloc>::value_type = std::vector<long long int>; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<long long int> >]’ vector(size_type __n, const value_type& __value, ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:427:7: note: no known conversion for argument 2 from ‘std::vector<int>’ to ‘const value_type&’ {aka ‘const std::vector<long long int>&’} /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:415:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>::size_type, const allocator_type&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >; std::vector<_Tp, _Alloc>::size_type = long unsigned int; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<long long int> >]’ vector(size_type __n, const allocator_type& __a = allocator_type()) ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:415:7: note: no known conversion for argument 2 from ‘std::vector<int>’ to ‘const allocator_type&’ {aka ‘const std::allocator<std::vector<long long int> >&’} /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:402:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector(const allocator_type&) [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >; std::vector<_Tp, _Alloc>::allocator_type = std::allocator<std::vector<long long int> >]’ vector(const allocator_type& __a) _GLIBCXX_NOEXCEPT ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:402:7: note: candidate expects 1 argument, 2 provided /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:391:7: note: candidate: ‘std::vector<_Tp, _Alloc>::vector() [with _Tp = std::vector<long long int>; _Alloc = std::allocator<std::vector<long long int> >]’ vector() ^~~~~~ /usr/local/gcc-8.2.0/include/c++/8.2.0/bits/stl_vector.h:391:7: note: candidate expects 0 arguments, 2 provided
セット
セット | 得点 | Cases |
---|
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # |
---|