#3637
Interesting Array
Se dă un vector cu n
numere. În acest vector, trebuie aflat intervalul(care poate fi oricare subsecvență cu elemente consecutive din vector) care este cel mai interesant.
Problema | Interesting Array | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 64 MB
|
Id soluție | #53378125 | Utilizator | |
Fișier | interesting_array.cpp | Dimensiune | 1.83 KB |
Data încărcării | 26 Octombrie 2024, 20:32 | Scor / rezultat | Eroare de compilare |
interesting_array.cpp: In function 'int maxInterest(const std::vector<int>&, int)': interesting_array.cpp:16:20: error: expected unqualified-id before '[' token for (auto& [num, count] : freq) { ^ interesting_array.cpp:16:20: error: expected ';' before '[' token interesting_array.cpp:16:21: error: 'num' was not declared in this scope for (auto& [num, count] : freq) { ^ interesting_array.cpp: In lambda function: interesting_array.cpp:16:33: error: expected '{' before ':' token for (auto& [num, count] : freq) { ^ interesting_array.cpp: In function 'int maxInterest(const std::vector<int>&, int)': interesting_array.cpp:16:20: error: overloaded function with no contextual type information for (auto& [num, count] : freq) { ^ interesting_array.cpp:16:33: error: expected ';' before ':' token for (auto& [num, count] : freq) { ^ interesting_array.cpp:16:33: error: expected primary-expression before ':' token interesting_array.cpp:16:33: error: expected ')' before ':' token interesting_array.cpp:16:33: error: expected primary-expression before ':' token interesting_array.cpp:16:33: error: expected ';' before ':' token interesting_array.cpp:61:1: error: expected '}' at end of input } ^ interesting_array.cpp:15:13: warning: unused variable 'min_freq' [-Wunused-variable] int min_freq = n + 1, max_freq = 0; ^ interesting_array.cpp:15:31: warning: unused variable 'max_freq' [-Wunused-variable] int min_freq = n + 1, max_freq = 0; ^ interesting_array.cpp:9:9: warning: unused variable 'left' [-Wunused-variable] int left = 0, max_interes = 0; ^ interesting_array.cpp:9:19: warning: unused variable 'max_interes' [-Wunused-variable] int left = 0, max_interes = 0; ^ interesting_array.cpp:61:1: error: expected '}' at end of input } ^ interesting_array.cpp:61:1: warning: no return statement in function returning non-void [-Wreturn-type]
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Interesting Array 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ă.