#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 | #53109159 | Utilizator | |
Fișier | rotire_secvente.cpp | Dimensiune | 622 B |
Data încărcării | 17 Octombrie 2024, 20:13 | Scor / rezultat | Eroare de compilare |
rotire_secvente.cpp:6:28: error: declaration of 'x' as array of references void citire(int n,int &x[50]) ^ rotire_secvente.cpp: In function 'void permutare(int, int*)': rotire_secvente.cpp:15:9: error: 'i' was not declared in this scope for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:15:18: error: 'k' was not declared in this scope for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:16:19: error: redeclaration of 'int i' { int cat,k,j,i,x[50]; ^ rotire_secvente.cpp:15:9: error: '<typeprefixerror>i' previously declared here for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:20:23: warning: operation on 'j' may be undefined [-Wsequence-point] {x[++j]=x[j-1]; ^ rotire_secvente.cpp:25:5: error: a function-definition is not allowed here before '{' token { int i,x[50] ^ rotire_secvente.cpp:30:5: error: a function-definition is not allowed here before '{' token { ^ rotire_secvente.cpp:37:5: error: expected '}' at end of input } ^
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ă.