【Codeforces Round #589 B】Filling the Grid

Topic Link

Filling the Grid

introduce

Suppose there is a \(h×w\) grid consisting of empty or full cells. Let's make some definitions:

  • \(r_i\) is the number of consecutive full cells connected to the left side in the \(i\)-th row \((1≤i≤h)\). In particular, \(r_i=0\) if the leftmost cell of the \(i\)-th row is empty.
  • \(c_j\) is the number of consecutive full cells connected to the top end in the \(j\)-th column \((1≤j≤w)\). In particular, \(c_j=0\) if the topmost cell of the \(j\)-th column is empty.
    In other words, the \(i\)-th row starts exactly with \(r_i\) full cells. Similarly, the \(j\)-th column starts exactly with \(c_j\) full cells.

    These are the \(r\) and \(c\) values of some \(3×4\) grid. Black cells are full and white cells are empty.
    You have values of \(r\) and \(c\). Initially, all cells are empty. Find the number of ways to fill grid cells to satisfy values of \(r\) and \(c\). Since the answer can be very large, find the answer modulo \(1000000007(10^9+7)\). In other words, find the remainder after division of the answer by \(1000000007(10^9+7)\).

    Input

    The first line contains two integers \(h\) and \(w\) \((1≤h,w≤10^3)\) — the height and width of the grid.
    The second line contains \(h\) integers \(r_1,r_2,…,r_h (0≤r_i≤w)\) — the values of \(r\).
    The third line contains \(w\) integers \(c1,c2,…,cw (0≤c_j≤h)\) — the values of \(c\).

    Output

    Print the answer modulo \(1000000007(10^9+7)\).

    Examples

    input

    3 4
    0 3 1
    0 2 3 0
    

    output

    2
    

    input

    1 1
    0
    1
    

    output

    0
    

    input

    19 16
    16 16 16 16 15 15 0 5 0 4 9 9 1 4 4 0 8 16 12
    6 12 19 15 8 6 19 19 14 6 9 16 10 11 15 4
    

    output

    797922655
    

    Note

    In the first example, this is the other possible case.

    In the second example, it's impossible to make a grid to satisfy such \(r\), \(c\) values.
    In the third example, make sure to print answer modulo \((10^9+7)\).

answer

How many questions asked in the grid could meet certain conditions.
Since the input \ (r_j \) , the section \ (J \) before the line \ (r_j + 1 \) grid is determined (front \ (r_j \) one is black, the \ (r_j + 1 \) one is white).
So we just enumerate each position is at the same time \ (r_j + 1 \) and \ (c_i + \ 1) outside.
Identify the number of these positions in that these positions can be white or black.
Meet the conditions of the program number is \ (POW (2, SUM) \) .
The time complexity is \ (O (hw) \) is.
Here we must note:
When a number of conditions contrary to the rows and columns, program number should be zero.
For example, in \ ((j, r_j + 1 ) \) satisfies position on \ (R & lt \) requirement is white, but if \ (j≤c r_j +. 1 {} \) , i.e. satisfying \ (C \ ) requirement is black, then the program number to zero.
On the code:

#include<bits/stdc++.h>
#define mod 1000000007
using namespace std;
int n,m,ans;
int a[1009],b[1009];
long long ksm(int p){
    long long s=2;
    long long ans=1;
    while(p){
        if(p&1) ans*=s;
        ans%=mod;
        s=s*s%mod;
        p/=2;
    }
    return ans;
}
int main(){
    scanf("%d%d",&n,&m);
    for(int j=1;j<=n;j++)
        scanf("%d",&a[j]);
    for(int j=1;j<=m;j++)
        scanf("%d",&b[j]);
    for(int j=1;j<=n;j++)
        if(j<=b[a[j]+1]){
            printf("0");
            return 0;
        }
    for(int j=1;j<=m;j++)
        if(j<=a[b[j]+1]){
            printf("0");
            return 0;
        }
    for(int j=1;j<=n;j++)
        for(int i=a[j]+2;i<=m;i++)
            if(j>b[i]+1) ans++;
    printf("%lld",ksm(ans));
    return 0;
}

Guess you like

Origin www.cnblogs.com/linjiale/p/11611736.html