#2684
hard_ssc
Se dă un șir de n
numere naturale. Să se determine numărul minim de subșiruri strict crescătoare în care se poate partiționa șirul.
Classic Greedy
Problema | hard_ssc | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53752775 | Utilizator | |
Fișier | hard_ssc.cpp | Dimensiune | 675 B |
Data încărcării | 10 Noiembrie 2024, 21:28 | Scor / rezultat | Eroare de compilare |
hard_ssc.cpp: In function 'int main()': hard_ssc.cpp:7:10: error: 'i' was not declared in this scope for (i=1 ; i <= n ; i ++ ) ^ hard_ssc.cpp:11:14: error: reference to 'max' is ambiguous dr = max ; ^ hard_ssc.cpp:3:16: note: candidates are: int max int p[100001], max = 0, n,x,mij,st,dr,poz; ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/ostream:38, from /usr/include/c++/4.8/iostream:39, from hard_ssc.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ hard_ssc.cpp:30:17: error: reference to 'max' is ambiguous p[++max] =x ; ^ hard_ssc.cpp:3:16: note: candidates are: int max int p[100001], max = 0, n,x,mij,st,dr,poz; ^ In file included from /usr/include/c++/4.8/bits/char_traits.h:39:0, from /usr/include/c++/4.8/ios:40, from /usr/include/c++/4.8/ostream:38, from /usr/include/c++/4.8/iostream:39, from hard_ssc.cpp:1: /usr/include/c++/4.8/bits/stl_algobase.h:260:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare) max(const _Tp& __a, const _Tp& __b, _Compare __comp) ^ /usr/include/c++/4.8/bits/stl_algobase.h:216:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&) max(const _Tp& __a, const _Tp& __b) ^ hard_ssc.cpp:35:13: error: 'nrp' was not declared in this scope cout << nrp ; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema hard_ssc 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ă.