#4243
mouse
Un experiment urmăreşte comportarea unui şoricel pus într-o cutie dreptunghiulară, împărţită în n x m
cămăruţe egale de formă pătrată. Fiecare cămăruţă conţine o anumită cantitate de hrană. Şoricelul trebuie să pornească din colţul (1, 1)
al cutiei şi să ajungă în colţul opus (n, m)
, mâncând cât mai multă hrană. El poate trece dintr-o cameră în una alăturată (două camere sunt alăturate dacă au un perete comun), mănâncă toată hrana din cămăruţă atunci când intră. Se asemenea, nu va intra niciodată într-o cameră fără hrană. Stabiliţi care este cantitatea maximă de hrană pe care o poate mânca.
OJI 2002, clasa a IX-a
Problema | mouse | Operații I/O |
mouse.in /mouse.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #45946775 | Utilizator | |
Fișier | mouse.cpp | Dimensiune | 1020 B |
Data încărcării | 26 Octombrie 2023, 14:20 | Scor / rezultat | Eroare de compilare |
mouse.cpp: In function 'int main()': mouse.cpp:12:2: error: expected unqualified-id before 'for' for(i=1;i<=n;i++) ^ mouse.cpp:12:10: error: 'i' was not declared in this scope for(i=1;i<=n;i++) ^ mouse.cpp:12:13: error: 'n' was not declared in this scope for(i=1;i<=n;i++) ^ mouse.cpp:12:18: error: expected ';' before ')' token for(i=1;i<=n;i++) ^ mouse.cpp:13:13: error: 'j' was not declared in this scope for(j=1;j<=m;j++) ^ mouse.cpp:13:16: error: 'm' was not declared in this scope for(j=1;j<=m;j++) ^ mouse.cpp:13:21: error: expected ';' before ')' token for(j=1;j<=m;j++) ^ mouse.cpp:15:5: error: 's' was not declared in this scope s=1; ^ mouse.cpp:16:5: error: 'g' was not declared in this scope g=1; ^ mouse.cpp:17:5: error: 'k' was not declared in this scope k=0; ^ mouse.cpp:21:12: error: 'a' was not declared in this scope if(a[i+1][j]>a[i][j+1] and a[i+1][j]>a[i+1][j+1]) ^ mouse.cpp:24:13: error: 'q' was not declared in this scope q=j; ^ mouse.cpp:27:13: error: 'a' was not declared in this scope if(a[i+1][j+1]>a[i][j+1] and a[i+1][j+1]>a[i+1][j]) ^ mouse.cpp:30:13: error: 'q' was not declared in this scope q=j+1; ^ mouse.cpp:33:12: error: 'a' was not declared in this scope if(a[i][j+1]>a[i+1][j+1] and a[i+1][j+1]>a[i+1][j]) ^ mouse.cpp:36:13: error: 'q' was not declared in this scope q=j+1; ^ mouse.cpp:46:11: error: 'q' was not declared in this scope for(j=q;j<=m-1;j++) ^ mouse.cpp:48:9: error: 'v' was not declared in this scope v[1]=a[i][j]; ^ mouse.cpp:48:14: error: 'a' was not declared in this scope v[1]=a[i][j]; ^ mouse.cpp:52:9: error: 'mx' was not declared in this scope mx=v[1]; ^ mouse.cpp:57:5: error: expected primary-expression before '}' token } ^ mouse.cpp:57:5: error: expected ';' before '}' token
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema mouse 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ă.