제출 #731110

#제출 시각아이디문제언어결과실행 시간메모리
731110sleepntsheepBitaro the Brave (JOI19_ho_t1)C++17
100 / 100
886 ms256100 KiB
#include <bits/stdc++.h>
using namespace std;

const int N = 3005;

int n, m;
long long ans;
int a[N][N];
int fr[N][N][3], fc[N][N][3];
const std::string JOI = "JOI";

int main()
{
    scanf("%d%d", &n, &m);
    for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++)
    {
        char c;
        scanf(" %c", &c);
        int x = std::find(JOI.begin(), JOI.end(), c) - JOI.begin();
        ++fr[i][j][x]; ++fc[j][i][x];
        a[i][j] = x;
    }

    for (int j = 1; j <= m; j++) for (int i = n; i >= 1; i--)
        fc[j][i][2] += fc[j][i+1][2];

    for (int i = 1; i <= n; i++) for (int j = m; j >= 1; j--)
        fr[i][j][1] += fr[i][j+1][1];


    for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++)
    {
        if (a[i][j] == 0)
        {
            ans += 1ll * fr[i][j][1] * 1ll * fc[j][i][2];
        }
    }

    printf("%lld", ans);


    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

joi2019_ho_t1.cpp: In function 'int main()':
joi2019_ho_t1.cpp:14:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 |     scanf("%d%d", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~
joi2019_ho_t1.cpp:18:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   18 |         scanf(" %c", &c);
      |         ~~~~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...