이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define oo 1e9
#define fi first
#define se second
#define sp(iiii) setprecision(iiii)
#define IO ios_base::sync_with_stdio(false); cin.tie(0)
#define ms(aaaa,xxxx) memset(aaaa,xxxx,sizeof(aaaa))
#define cntbit(xxxx) __builtin_popcount(xxxx)
#define getbit(xxxx,aaaa) ((xxxx>>(aaaa-1))&1)
#define _cos(xxxx) cos(xxxx*acos(-1)/180)
#define _sin(xxxx) sin(xxxx*acos(-1)/180)
#define _tan(xxxx) tan(xxxx*acos(-1)/180)
#define PE cout<<fixed
typedef long double ld;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<pair<int,int>,int> piii;
typedef pair<long long,long long> pll;
typedef pair<pair<long long,long long>,long long> plll;
const ld pi=acos(-1);
string s[5009];
ll n,m,i,j,f1[5009][5009],f2[5009][5009],res;
int main(){
IO;
cin>>n>>m;
for (i=1;i<=n;i++) {
cin>>s[i];
}
for (i=1;i<=n;i++) {
for (j=m;j>=1;j--) {
if (s[i][j-1]=='O') {
f1[i][j]=f1[i][j+1]+1;
}
else {
f1[i][j]=f1[i][j+1];
}
}
}
for (i=n;i>=1;i--) {
for (j=1;j<=m;j++) {
if (s[i][j-1]=='I') {
f2[i][j]=f2[i+1][j]+1;
}
else {
f2[i][j]=f2[i+1][j];
}
}
}
for (i=1;i<=n;i++) {
for (j=1;j<=m;j++) {
if (s[i][j-1]=='J') {
res+=f1[i][j]*f2[i][j];
}
}
}
cout<<res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |