#3169
Plata2
Se consideră n
tipuri de bancnote, cu valorile v[1] v[2] ... v[n]
, ordonate strict crescător. Pentru fiecare tip de bancnote se știe numărul de bancnote disponibile c[1] c[2] ... c[n]
. Se cere să se determine o modalitate de a plăti integral o sumă dată S
cu bancnotele disponibile, astfel încât să se folosească cel puțin o bancnotă de fiecare tip.
Problema | Plata2 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #52317439 | Utilizator | |
Fișier | plata2.cpp | Dimensiune | 1.03 KB |
Data încărcării | 26 Septembrie 2024, 10:56 | Scor / rezultat | Eroare de compilare |
plata2.cpp: In function 'int main()': plata2.cpp:15:18: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') cin>>banc[i].val; ^ plata2.cpp:18:30: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') cin>>banc[i].nr; ^ plata2.cpp:19:25: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') banc[i].nr--; ^ plata2.cpp:20:25: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') banc[i].utilizate++; ^ plata2.cpp:21:31: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') suma-=banc[i].val; ^ plata2.cpp:30:27: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') while(banc[i].val <= suma && banc[i].nr>0){ ^ plata2.cpp:30:50: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') while(banc[i].val <= suma && banc[i].nr>0){ ^ plata2.cpp:31:25: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') banc[i].nr--; ^ plata2.cpp:32:31: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') suma-=banc[i].val; ^ plata2.cpp:33:25: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') banc[i].utilizate++; ^ plata2.cpp:38:27: error: no match for 'operator[]' (operand types are 'bancnota' and 'int') cout<<banc[i].utilizate<<" "; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Plata2 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ă.