#2966
yinyang
Se dă o matrice A
cu N
linii și M
coloane, cu valori cuprinse între 1 și N∙M
inclusiv, nu neapărat distincte. O operație constă în selectarea a două linii sau două coloane consecutive și interschimbarea acestora (swap). O matrice yin-yang
este o matrice în care A[ i ] [ j ] ≥ A[ i ][ j – 1]
, pentru orice pereche (i, j)
cu 1 ≤ i ≤ N
și 2 ≤ j ≤ M
și A[ i ][ j ] ≥ A[ i – 1][ j ]
, pentru orice pereche (i, j)
cu 2 ≤ i ≤ N
și 1 ≤ j ≤ M
.
Să se determine numărul minim de operații necesare pentru a transforma matricea dată într-o matrice yin-yang
.
OJI 2019
Problema | yinyang | Operații I/O |
yinyang.in /yinyang.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #49711305 | Utilizator | |
Fișier | yinyang.cpp | Dimensiune | 1.60 KB |
Data încărcării | 12 Martie 2024, 21:09 | Scor / rezultat | Eroare de compilare |
yinyang.cpp:14:28: error: 'int rindex [105]' redeclared as different kind of symbol int lindex[MAX], rindex[MAX]; ^ In file included from /usr/include/c++/4.8/cstring:42:0, from /usr/include/i386-linux-gnu/c++/4.8/bits/stdc++.h:48, from yinyang.cpp:1: /usr/include/string.h:510:1: error: previous declaration of 'const char* rindex(const char*, int)' rindex (const char *__s, int __c) __THROW ^ yinyang.cpp: In function 'int main()': yinyang.cpp:43:17: error: invalid types '<unresolved overloaded function type>[int]' for array subscript rindex[i] = i; ^ yinyang.cpp:46:19: error: invalid operands of types '<unresolved overloaded function type>' and 'int' to binary 'operator+' sort(rindex + 1, rindex + m + 1, compR); ^ yinyang.cpp:46:31: error: invalid operands of types '<unresolved overloaded function type>' and 'int' to binary 'operator+' sort(rindex + 1, rindex + m + 1, compR); ^ yinyang.cpp:49:38: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(mt[lindex[i]][rindex[j]] < mt[lindex[i]][rindex[j - 1]]){ ^ yinyang.cpp:49:69: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(mt[lindex[i]][rindex[j]] < mt[lindex[i]][rindex[j - 1]]){ ^ yinyang.cpp:53:38: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(mt[lindex[i]][rindex[j]] < mt[lindex[i - 1]][rindex[j]]){ ^ yinyang.cpp:53:69: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(mt[lindex[i]][rindex[j]] < mt[lindex[i - 1]][rindex[j]]){ ^ yinyang.cpp:67:24: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(rindex[i] > rindex[j]) ++ans; ^ yinyang.cpp:67:36: error: invalid types '<unresolved overloaded function type>[int]' for array subscript if(rindex[i] > rindex[j]) ++ans; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema yinyang 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ă.