#4199
flowers
Grădina Academiei Shuchi’in are forma unui pătrat cu latura de N
metri și este împărțit în N × N
parcele pătrate cu dimensiunea de 1
metru. Harta grădinii arată că parcelele sunt aranjate pe linii și coloane și sunt notate cu perechi (r, c)
, unde r
este linia și c
coloana pe care o ocupă parcela. Unele parcele, marcate cu 0
pe harta grădinii, conțin copaci străvechi care nu au putut fi mutați sau tăiați când grădina a fost restaurată. Alte parcele, marcate cu 1
, conțin flori. Notăm cu F
numărul total de parcele care conțin flori. Kaguya definește gradul de înflorire a unei parcele ca fiind suma distanțelor de la parcela curentă la cele mai apropiate K
parcele care conțin flori. Ea vrea să știe gradul de înflorire al fiecărei parcele.
Problema | flowers | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 256 MB
/
Stivă 64 MB
|
Id soluție | #54927710 | Utilizator | |
Fișier | flowers.cpp | Dimensiune | 3.61 KB |
Data încărcării | 12 Decembrie 2024, 13:53 | Scor / rezultat | Eroare de compilare |
flowers.cpp: In function 'std::vector<std::vector<int> > compute_flowering_degree(int, int, std::vector<std::pair<int, int> >&)': flowers.cpp:18:16: error: expected unqualified-id before '[' token for (auto &[r, c] : flowers) { ^ flowers.cpp:18:16: error: expected ';' before '[' token flowers.cpp:18:17: error: 'r' was not declared in this scope for (auto &[r, c] : flowers) { ^ flowers.cpp:18:20: error: 'c' was not declared in this scope for (auto &[r, c] : flowers) { ^ flowers.cpp: In lambda function: flowers.cpp:18:23: error: expected '{' before ':' token for (auto &[r, c] : flowers) { ^ flowers.cpp: In function 'std::vector<std::vector<int> > compute_flowering_degree(int, int, std::vector<std::pair<int, int> >&)': flowers.cpp:18:23: error: expected ';' before ':' token flowers.cpp:18:23: error: expected primary-expression before ':' token flowers.cpp:18:23: error: expected ')' before ':' token flowers.cpp:18:23: error: expected primary-expression before ':' token flowers.cpp:18:23: error: expected ';' before ':' token flowers.cpp:66:60: error: no match for call to '(compute_flowering_degree(int, int, std::vector<std::pair<int, int> >&)::__lambda5) (int&, int&, int&, int&, std::vector<std::vector<int> >&)' int cnt = query(U1, V1, U2, V2, prefixCount); ^ flowers.cpp:43:20: note: candidates are: auto query = [&](int U1, int V1, int U2, int V2, vector<vector<long long>> &arr) -> long long { ^ flowers.cpp:66:60: note: long long int (*)(int, int, int, int, std::vector<std::vector<long long int> >&) <conversion> int cnt = query(U1, V1, U2, V2, prefixCount); ^ flowers.cpp:66:60: note: candidate expects 6 arguments, 6 provided flowers.cpp:43:94: note: compute_flowering_degree(int, int, std::vector<std::pair<int, int> >&)::__lambda5 auto query = [&](int U1, int V1, int U2, int V2, vector<vector<long long>> &arr) -> long long { ^ flowers.cpp:43:94: note: no known conversion for argument 5 from 'std::vector<std::vector<int> >' to 'std::vector<std::vector<long long int> >&' flowers.cpp:74:56: error: no match for call to '(compute_flowering_degree(int, int, std::vector<std::pair<int, int> >&)::__lambda5) (int&, int&, int&, int&, std::vector<std::vector<int> >&)' int cnt = query(U1, V1, U2, V2, prefixCount); ^ flowers.cpp:43:20: note: candidates are: auto query = [&](int U1, int V1, int U2, int V2, vector<vector<long long>> &arr) -> long long { ^ flowers.cpp:74:56: note: long long int (*)(int, int, int, int, std::vector<std::vector<long long int> >&) <conversion> int cnt = query(U1, V1, U2, V2, prefixCount); ^ flowers.cpp:74:56: note: candidate expects 6 arguments, 6 provided flowers.cpp:43:94: note: compute_flowering_degree(int, int, std::vector<std::pair<int, int> >&)::__lambda5 auto query = [&](int U1, int V1, int U2, int V2, vector<vector<long long>> &arr) -> long long { ^ flowers.cpp:43:94: note: no known conversion for argument 5 from 'std::vector<std::vector<int> >' to 'std::vector<std::vector<long long int> >&'
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema flowers 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ă.