前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【题解】Gregor and the Pawn Game

【题解】Gregor and the Pawn Game

作者头像
MikeC
发布2022-09-21 15:02:31
2630
发布2022-09-21 15:02:31
举报
文章被收录于专栏:MikeC's BlogMikeC's Blog

题目描述

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

代码语言:javascript
复制
4
3
000
111
4
1111
1111
3
010
010
5
11001
00000

输出 #1

代码语言:javascript
复制
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)

代码

代码语言:javascript
复制
#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

© 允许规范转载

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2021 年 08 月,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目描述
  • 输入格式
  • 输出格式
  • 输入输出样例
    • 输入 #1
      • 输出 #1
      • 分析
      • 代码
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档