# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
690040 | vjudge1 | Bitaro the Brave (JOI19_ho_t1) | C++14 | 557 ms | 88508 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define all(a) a.begin(), a.end()
#define pb push_back
typedef long long ll;
typedef pair<int, int> ii;
const int N = 3000 + 5;
const int mod = 1e9 + 7;
void print(){cerr << '\n';} template<typename T1, typename ...T2>
void print(const T1 &a, const T2 &...b){cerr << a << ' ', print(b...);}
int m, n;
char a[N][N];
int cnt[N][N], cnt2[N][N];
void sub3()
{
ll res = 0;
for(int i = m; i >= 1; i--)
for(int j = 1; j <= n; j++)
cnt[i][j] = cnt[i + 1][j] + (a[i][j] == 'I');
for(int i = 1; i <= m; i++)
for(int j = n; j >= 1; j--)
cnt2[i][j] = cnt2[i][j + 1] + (a[i][j] == 'O');
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |