zl程序教程

您现在的位置是:首页 >  其它

当前栏目

【题解】Gregor and the Pawn Game

The and 题解 Game
2023-06-13 09:13:01 时间

题目描述

There is a chessboard of size n by n . The square in the i -th row from top and j -th column from the left is labelled (i,j) .

Currently, Gregor has some pawns in the n -th row. There are also enemy pawns in the 1 -st row. On one turn, Gregor moves one of his pawns. A pawn can move one square up (from (i,j) to (i-1,j) ) if there is no pawn in the destination square. Additionally, a pawn can move one square diagonally up (from (i,j) to either (i-1,j-1) or (i-1,j+1) if and only if there is an enemy pawn in that square. The enemy pawn is also removed.

Gregor wants to know what is the maximum number of his pawns that can reach row 1 ?

Note that only Gregor takes turns in this game, and the enemy pawns never move. Also, when Gregor's pawn reaches row 1 , it is stuck and cannot make any further moves.

输入格式

The first line of the input contains one integer t ( 1\le t\le 2\cdot 10^4 ) — the number of test cases. Then t test cases follow.

Each test case consists of three lines. The first line contains a single integer n ( 2\le n\le 2\cdot{10}^{5} ) — the size of the chessboard.

The second line consists of a string of binary digits of length n , where a 1 in the i -th position corresponds to an enemy pawn in the i -th cell from the left, and 0 corresponds to an empty cell.

The third line consists of a string of binary digits of length n , where a 1 in the i -th position corresponds to a Gregor's pawn in the i -th cell from the left, and 0 corresponds to an empty cell.

It is guaranteed that the sum of n across all test cases is less than 2\cdot{10}^{5} .

输出格式

For each test case, print one integer: the maximum number of Gregor's pawns which can reach the 1 -st row.

输入输出样例

输入 #1

4
3
000
111
4
1111
1111
3
010
010
5
11001
00000

输出 #1

3
4
0
0

分析

首先,显然对于 n\ge 3 的情况,第 2 行到第 n-1 行可以忽略,故我们只需要考虑一个 2\times n 的棋盘。

对于位于 (i,j) 的白棋(己方),我们有 3 种移动的方案:

  • 当左上方即 (i-1,j-1) 有黑棋时,可以向左上方即 (i-1,j-1) 移动。
  • 当正上方即 (i-1,j) 没有黑棋时,可以向正上方即 (i-1,j) 移动。
  • 当右上方即 (i-1,j+1) 有黑棋时,可以向右上方即 (i-1,j+1) 移动。

观察三种方案可以发现,向左上方或正上方移动显然不会影响位于 (i,j+1) 至位于 (i,n) 的所有白棋的移动,而向右上方移动会影响位于 (i,j+1) 的白棋向左上方移动。至此我们得到了一个贪心方案:尽量向左上方或正上方移动。

多测记得清空数组,时间复杂度 O(n)

代码

#include<bits/stdc++.h>
using namespace std;
int t;
int n;
int a[200001],b[200001];
signed main(){
    scanf("%d",&t);
    while(t--){
        memset(a,0,sizeof(a));
        memset(b,0,sizeof(b));
        scanf("%d",&n);
        for(int i=1;i<=n;i++)scanf("%1d",&a[i]);
        for(int i=1;i<=n;i++)scanf("%1d",&b[i]);
        int ans=0;
            for(int i=1;i<=n;i++){
                if(!b[i])continue;
                if(a[i]==0){
                    ans++;continue;
                }
                if(a[i-1]==1){
                    a[i-1]=2;
                    ans++;
                    continue;
                }if(a[i+1]==1){
                    a[i+1]=2;
                    ans++;
                    continue;
                }
            }
        printf("%d\n",ans);
    }
}

最后修改:2021 年 08 月 17 日 01 : 06 PM

© 允许规范转载