#1332
TraseuCal
Se dă o tablă de șah formată din n
linii și m
coloane, definind n*m
zone, unele dintre ele fiind libere, altele conținând obstacole. În zona de coordonate 1 1
se află un cal care se poate deplasa pe tablă în L
, ca la șah, fără a părăsi tabla, fără a trece prin zone care conțin obstacole și fără a trece de două ori prin aceeași zonă.
Determinați o modalitate prin care calul poate ajunge în zona de coordonate n m
– unde se află o căpiță de fân.
Problema | TraseuCal | Operații I/O |
traseucal.in /traseucal.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53497405 | Utilizator | |
Fișier | traseucal.cpp | Dimensiune | 4.02 KB |
Data încărcării | 02 Noiembrie 2024, 22:56 | Scor / rezultat | 0 puncte |
traseucal.cpp: In function 'bool valid()': traseucal.cpp:63:48: warning: statement has no effect [-Wunused-value] mat[st[2][k-1]-1][st[3][k-1]+2]==-1; ^ traseucal.cpp:147:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ traseucal.cpp: In function 'void init()': traseucal.cpp:9:36: warning: array subscript is above array bounds [-Warray-bounds] cout << st[2][k-1] << ' '<<st[3][k-1] << endl; ^ traseucal.cpp: In function 'bool valid()': traseucal.cpp:29:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]-2,st[3][k-1]-1)) ^ traseucal.cpp:35:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]-1; ^ traseucal.cpp:44:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]-2,st[3][k-1]+1)) ^ traseucal.cpp:50:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]+1; ^ traseucal.cpp:59:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]-1,st[3][k-1]+2)) ^ traseucal.cpp:65:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]+2; ^ traseucal.cpp:74:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]+1,st[3][k-1]+2)) ^ traseucal.cpp:80:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]+2; ^ traseucal.cpp:89:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]+2,st[3][k-1]+1)) ^ traseucal.cpp:95:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]+1; ^ traseucal.cpp:104:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]+2,st[3][k-1]-1)) ^ traseucal.cpp:110:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]-1; ^ traseucal.cpp:119:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]-1,st[3][k-1]-2)) ^ traseucal.cpp:125:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]-2; ^ traseucal.cpp:134:36: warning: array subscript is above array bounds [-Warray-bounds] if(inside(st[2][k-1]+1,st[3][k-1]-2)) ^ traseucal.cpp:140:21: warning: array subscript is above array bounds [-Warray-bounds] st[3][k]=st[3][k-1]-2; ^ traseucal.cpp: In function 'bool sol()': traseucal.cpp:150:27: warning: array subscript is above array bounds [-Warray-bounds] if(st[2][k]==n && st[3][k]==m) ^ traseucal.cpp: In function 'void afis()': traseucal.cpp:158:32: warning: array subscript is above array bounds [-Warray-bounds] cout << st[2][i] << st[3][i] << endl; ^ traseucal.cpp: In function 'int main()': traseucal.cpp:170:9: warning: array subscript is above array bounds [-Warray-bounds] st[3][1]=1; ^ traseucal.cpp:150:27: warning: array subscript is above array bounds [-Warray-bounds] if(st[2][k]==n && st[3][k]==m) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | Fisierul de iesire nu contine suficiente valori | 20 | 0 | Exemplu | |
2 | 0 secunde | Fisierul de iesire nu contine suficiente valori | 20 | 0 | ||
3 | 0 secunde | Fisierul de iesire nu contine suficiente valori | 20 | 0 | ||
4 | 0 secunde | Fisierul de iesire nu contine suficiente valori | 20 | 0 | ||
5 | 0 secunde | Fisierul de iesire nu contine suficiente valori | 20 | 0 | ||
Punctaj total | 0 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema TraseuCal 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ă.