Post

[Codeforces] Codeforces Round #626(Div.2) - B. Count Subrectangles

문제 링크

터지지 않도록 하기 위해 입력받을 때 연속된 1의 길이로 저장해 나누어지는 블록(구역?)별로 저장해 경우의 수를 구해주었다.

소스코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <iostream>
#include <queue>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <map>
#include <set>
#include <string.h>
#define MAX 50000000
using namespace std;
typedef long long ll;
typedef pair<int, int> PII;

map<int, int> a, b;
map<PII, int> rect;

int main(void) {
    int n, m, k, t;
    scanf("%d %d %d", &n, &m, &k);
    ll cnt = 0;
    for (int i = 0; i < n; i++) {
        scanf("%d", &t);
        if (t) cnt++;
        else if (cnt) {
            a[cnt]++;
            cnt = 0;
        }
    }
    if (cnt) {
        a[cnt]++;
        cnt = 0;
    }
    for (int i = 0; i < m; i++) {
        scanf("%d", &t);
        if (t) cnt++;
        else if (cnt) {
            b[cnt]++;
            cnt = 0;
        }
    }
    if (cnt) {
        b[cnt]++;
        cnt = 0;
    }

    for (auto i : a)
        for (auto j : b)
            if (i.first * j.first >= k)
                rect[{min(i.first, j.first), max(i.first, j.first)}] += i.second * j.second;

    for (auto it : rect)
        for (int i = 1; i <= it.first.first; i++)
            if (!(k % i) && k / i <= it.first.second)
                cnt += (it.first.first - i + 1) * (it.first.second - (k / i) + 1) * it.second;

    printf("%lld", cnt);
    return 0;
}
This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.