Codeforces Problem 710A King Moves(implementation)

本文介绍了一个Codeforces上的编程题目,该题目要求计算一个位于标准8*8棋盘上的国王所能移动的不同位置数量。文章提供了详细的解题思路,包括如何根据不同位置确定国王的可能移动方向,并给出了简洁高效的实现代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

此文章可以使用目录功能哟↑(点击上方[+])

比赛链接→Educational Codeforces Round 16

 Codeforces Problem 710A King Moves

Accept: 0    Submit: 0
Time Limit: 1 second    Memory Limit : 256 megabytes

 Problem Description

The only king stands on the standard chess board. You are given his position in format "cd", where c is the column from 'a' to 'h' and d is the row from '1' to '8'. Find the number of moves permitted for the king.

Check the king's moves here https://en.wikipedia.org/wiki/King_(chess).


King moves from the position e4

 Input

The only line contains the king's position in the format "cd", where 'c' is the column from 'a' to 'h' and 'd' is the row from '1' to '8'.

 Output

Print the only integer x — the number of moves permitted for the king.

 Sample Input

e4

 Sample Output

8

 Hint


 Problem Idea

解题思路:

【题意】
在8*8的棋盘上放有一颗棋子(国王)

它可以朝相邻的8个格子移动一步,如图'×'就是棋子能移动的位置,当然,棋子不能移出棋盘


现在给你棋子的列与行,问棋子运行移动的位置有几个


【类型】
implementation

【分析】

其实,棋子能移动的位置取决于棋子当前所在位置

比如,如果棋子在最角落,那么只有3个位置可以移动

如果棋子在棋盘边上,则有5个位置可以移动

其他位置的话,则有8个位置可以移动

当然,本人不采取分类讨论的方法


由图中可以看出,求棋子能够移动的位置数,其实可以转化为求矩形内的格子数-1

而要求矩形内的格子数,只需要知道矩形右上角格子的坐标和左下角格子的坐标就可以了

假设,我们将棋盘行列编号均设为0~7,当前国王所在位置为(r,c)

那么矩形的右上角格子坐标为(min(r+1,7),min(c+1,7)),右下角格子坐标为(max(r-1,0),max(c-1,0))

这里用到max,min是防止棋子移出棋盘

【时间复杂度&&优化】
O(1)

题目链接→Codeforces Problem 710A King Moves

 Source Code

/*Sherlock and Watson and Adler*/
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<queue>
#include<stack>
#include<math.h>
#include<vector>
#include<map>
#include<set>
#include<bitset>
#include<cmath>
#include<complex>
#include<string>
#include<algorithm>
#include<iostream>
#define eps 1e-9
#define LL long long
#define PI acos(-1.0)
#define bitnum(a) __builtin_popcount(a)
using namespace std;
const int N = 1005;
const int M = 100005;
const int inf = 1000000007;
const int mod = 1000000007;
char s[5];
int main()
{
    int r,c;
    scanf("%s",s);
    c=s[0]-'a';
    r=s[1]-'1';
    printf("%d\n",(min(7,r+1)-max(0,r-1)+1)*(min(7,c+1)-max(0,c-1)+1)-1);
    return 0;
}

菜鸟成长记

### 关于Codeforces中的GCD问题 在Codeforces平台上存在多个涉及最大公约数(GCD)概念的问题。其中一道具有代表性的题目是编号为1025B的“Weakened Common Divisor”,该题由著名数学家Ildar引入了一个新的概念——弱化公因数(WCD),即对于一系列整数对列表而言的一种特殊性质[^2]。 具体到这道题目的描述如下:给出一个长度为\(n\)的数组\(a\),目标是在所有元素上加上同一个常量\(d\)之后能够找到至少两个不同的位置其值的最大公约数大于等于2,并且要使这个加上的常量尽可能小。此题的关键在于通过计算相邻两数之差来间接获取可能存在的公共因子,进而利用这些信息推导出满足条件所需的最小增量\[d\][^4]。 为了高效解决这类基于GCD的问题,在算法设计方面通常会采用一些特定技巧: - **差分遍历**:通过对原始序列做适当变换简化问题结构; - **快速求解GCD**:借助欧几里得算法迅速定位潜在候选者; - **优化查找过程**:针对所得结果进一步筛选最优方案; 下面是一个Python版本的解决方案片段用于演示如何处理上述提到的任务逻辑: ```python from math import gcd from itertools import pairwise def min_operations_to_weak_gcd(nums): diff_gcd = 0 for prev, curr in pairwise(nums): diff_gcd = gcd(diff_gcd, abs(curr - prev)) if diff_gcd == 1: return -1 factors = get_factors(diff_gcd) result = float('inf') target_modulo = nums[0] % diff_gcd for factor in factors: candidate = ((target_modulo + diff_gcd - (nums[0] % factor)) % factor) result = min(result, candidate) return int(result) def get_factors(n): """Helper function to generate all divisors.""" res = [] i = 1 while i*i <= n: if n % i == 0: res.append(i) if i != n // i: res.append(n//i) i += 1 return sorted(res)[::-1] ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值