https://codeforces.me/contest/279/problem/B
may anyone tell me what is the problem with logic
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
https://codeforces.me/contest/279/problem/B
may anyone tell me what is the problem with logic
https://codeforces.me/contest/116/problem/B
may anyone please tell me whats wrong with this code not able to input the string array ?
using namespace std; typedef long long ll;
int main() { int n, m; string c[12][13]; cin>>n>>m;
for (int i = 1; i <= n; ++i) { cin>>c[i][1]; } /* skip cout<<"the displayed value"<<endl; for(int i=1;i<=n;i++) cout<<c[i][1]<<endl; */ int eaten = 0; for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { if (c[i][j] == "W") { if (c[i-1][j] == "P" || c[i+1][j] == "P" || c[i][j-1] == "P" || c[i][j+1] == "P") { eaten += 1; } } } } cout<<eaten<<endl; return 0;
}
Name |
---|