#1518
sudoku
Scrieţi un program care, pentru o matrice 9 x 9
dată, reprezentând un puzzle SUDOKU, determină o soluţie a unui astfel de puzzle.
Problema | sudoku | Operații I/O |
sudoku.in /sudoku.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #50121640 | Utilizator | |
Fișier | sudoku.cpp | Dimensiune | 1.56 KB |
Data încărcării | 27 Martie 2024, 18:49 | Scor / rezultat | 100 puncte |
sudoku.cpp: In function 'bool Valid(int, int, int)': sudoku.cpp:18:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(l<=3) ^ sudoku.cpp:22:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(l>=4 && l<=6) ^ sudoku.cpp:26:7: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(l>=7) ^ sudoku.cpp: In function 'void Back(int, int)': sudoku.cpp:55:17: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(Valid(l,c,i)) ^ sudoku.cpp:47:6: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] { if(l<=9 && c<=9) ^ sudoku.cpp: In function 'bool Valid(int, int, int)': sudoku.cpp:17:12: warning: 'c1' may be used uninitialized in this function [-Wmaybe-uninitialized] int l1,c1; ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | OK. | 20 | 20 | Exemplu | |
2 | 0 secunde | OK. | 20 | 20 | ||
3 | 0 secunde | OK. | 20 | 20 | ||
4 | 0 secunde | OK. | 20 | 20 | ||
5 | 0 secunde | OK. | 20 | 20 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema sudoku 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ă.