#4203
NumberOfPoints
În planul xOy
se găsesc n
puncte de coordonate numere naturale, nu neapărat aflate pe poziții distincte. Pentru fiecare punct din plan de coordonate (x, y)
trebuie să spuneți câte alte puncte au coordonatele (p, q)
cu proprietatea că 0 ≤ p < x
și 0 ≤ q ≤ y
(atenție, p
este strict mai mic decât x
, iar q
este mai mic sau egal cu y
).
Folclorul informatic
Problema | NumberOfPoints | Operații I/O |
numberofpoints.in /numberofpoints.out
|
---|---|---|---|
Limita timp | 0.3 secunde | Limita memorie |
Total: 128 MB
/
Stivă 64 MB
|
Id soluție | #51276437 | Utilizator | |
Fișier | numberofpoints.cpp | Dimensiune | 2.49 KB |
Data încărcării | 03 Iunie 2024, 18:56 | Scor / rezultat | Eroare de compilare |
numberofpoints.cpp: In function 'bool cmp(triplet, triplet)': numberofpoints.cpp:68:10: error: 'struct triplet' has no member named 'x' if(a.x != b.x) ^ numberofpoints.cpp:68:17: error: 'struct triplet' has no member named 'x' if(a.x != b.x) ^ numberofpoints.cpp:69:18: error: 'struct triplet' has no member named 'x' return a.x < b.x; ^ numberofpoints.cpp:69:24: error: 'struct triplet' has no member named 'x' return a.x < b.x; ^ numberofpoints.cpp:70:14: error: 'struct triplet' has no member named 'y' return a.y < b.y; ^ numberofpoints.cpp:70:20: error: 'struct triplet' has no member named 'y' return a.y < b.y; ^ numberofpoints.cpp: At global scope: numberofpoints.cpp:74:10: error: '::main' must return 'int' int main() ^ numberofpoints.cpp: In function 'int main()': numberofpoints.cpp:81:40: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'x' points.push_back({(points[i-3].x*a+points[i-2].x*b+c)%d+1, ^ numberofpoints.cpp:81:56: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'x' points.push_back({(points[i-3].x*a+points[i-2].x*b+c)%d+1, ^ numberofpoints.cpp:82:40: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'y' (points[i-3].y*a+points[i-2].y*b+c)%d+1,i}); ^ numberofpoints.cpp:82:56: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'y' (points[i-3].y*a+points[i-2].y*b+c)%d+1,i}); ^ numberofpoints.cpp:82:69: error: no matching function for call to 'std::vector<triplet>::push_back(<brace-enclosed initializer list>)' (points[i-3].y*a+points[i-2].y*b+c)%d+1,i}); ^ numberofpoints.cpp:82:69: note: candidates are: In file included from /usr/include/c++/4.8/vector:64:0, from /usr/include/c++/4.8/bits/random.h:34, from /usr/include/c++/4.8/random:50, from /usr/include/c++/4.8/bits/stl_algo.h:65, from /usr/include/c++/4.8/algorithm:62, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:64, from numberofpoints.cpp:1: /usr/include/c++/4.8/bits/stl_vector.h:901:7: note: void std::vector<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = triplet; _Alloc = std::allocator<triplet>; std::vector<_Tp, _Alloc>::value_type = triplet] push_back(const value_type& __x) ^ /usr/include/c++/4.8/bits/stl_vector.h:901:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const value_type& {aka const triplet&}' /usr/include/c++/4.8/bits/stl_vector.h:919:7: note: void std::vector<_Tp, _Alloc>::push_back(std::vector<_Tp, _Alloc>::value_type&&) [with _Tp = triplet; _Alloc = std::allocator<triplet>; std::vector<_Tp, _Alloc>::value_type = triplet] push_back(value_type&& __x) ^ /usr/include/c++/4.8/bits/stl_vector.h:919:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::vector<triplet>::value_type&& {aka triplet&&}' numberofpoints.cpp:87:31: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'y' dr = max(dr,points[i].y); ^ numberofpoints.cpp:92:27: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'x' int h = points[i].x; ^ numberofpoints.cpp:93:46: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'x' while(i < points.size() && points[i].x == h) ^ numberofpoints.cpp:96:35: error: '__gnu_cxx::__alloc_traits<std::allocator<triplet> >::value_type' has no member named 'y' z.push_back(points[i].y); ^ numberofpoints.cpp: In function 'bool cmp(triplet, triplet)': numberofpoints.cpp:71:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema NumberOfPoints face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.