#4255
rotire_secvente
Se dă un vector cu n
elemente, numere naturale, și un număr k
, divizor al lui n
. Se împarte vectorul în k
secvențe disjuncte, numerotate de la 1
la k
. Să se permute circular cu o poziție spre stânga elementele din fiecare dintre cele k
secvențe și să se afișeze pe ecran vectorul rezultat în urma acestor modificări.
Problema | rotire_secvente | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53341938 | Utilizator | |
Fișier | rotire_secvente.cpp | Dimensiune | 801 B |
Data încărcării | 25 Octombrie 2024, 09:19 | Scor / rezultat | Eroare de compilare |
rotire_secvente.cpp: In function 'void permutare(int, int, int*)': rotire_secvente.cpp:34:22: error: invalid conversion from 'int' to 'int*' [-fpermissive] afisare(st, dr, v); ^ rotire_secvente.cpp:34:22: error: too many arguments to function 'void afisare(int*, int)' rotire_secvente.cpp:10:6: note: declared here void afisare(int k[], int n) ^ rotire_secvente.cpp: In function 'int main()': rotire_secvente.cpp:40:28: error: invalid operands of types 'int' and 'int [1005]' to binary 'operator/' for(int i = 1; i<=n; i+=(n/k)) ^ rotire_secvente.cpp:42:27: error: invalid operands of types 'int' and 'int [1005]' to binary 'operator/' permutare(i, i+(n/k)-1, v); ^ rotire_secvente.cpp:42:33: error: 'v' was not declared in this scope permutare(i, i+(n/k)-1, v); ^ rotire_secvente.cpp: At global scope: rotire_secvente.cpp:45:8: error: expected constructor, destructor, or type conversion before '(' token afisare(k , n); ^ rotire_secvente.cpp:49:1: error: expected unqualified-id before 'return' return 0; ^ rotire_secvente.cpp:50:1: error: expected declaration before '}' token } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema rotire_secvente 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ă.