Practical Skill Test——AT

题目描述

We have a grid with H rows and W columns. The square at the i-th row and the j-th column will be called Square (i,j).
The integers from 1 through H×W are written throughout the grid, and the integer written in Square (i,j) is Ai,j.
You, a magical girl, can teleport a piece placed on Square (i,j) to Square (x,y) by consuming |x−i|+|y−j| magic points.
You now have to take Q practical tests of your ability as a magical girl.
The i-th test will be conducted as follows:
Initially, a piece is placed on the square where the integer Li is written.
Let x be the integer written in the square occupied by the piece. Repeatedly move the piece to the square where the integer x+D is written, as long as x is not Ri. The test ends when x=Ri.
Here, it is guaranteed that Ri−Li is a multiple of D.
For each test, find the sum of magic points consumed during that test.

Constraints
1≤H,W≤300
1≤D≤H×W
1≤Ai,j≤H×W
Ai,j≠Ax,y((i,j)≠(x,y))
1≤Q≤105
1≤Li≤Ri≤H×W
(Ri−Li) is a multiple of D.

输入

Input is given from Standard Input in the following format:
H W D
A1,1 A1,2 … A1,W
:
AH,1 AH,2 … AH,W
Q
L1 R1
:
LQ RQ

输出

For each test, print the sum of magic points consumed during that test.
Output should be in the order the tests are conducted.

样例输入

3 3 2
1 4 3
2 5 7
8 9 6
1
4 8

样例输出

5

提示

4 is written in Square (1,2).
6 is written in Square (3,3).
8 is written in Square (3,1).
Thus, the sum of magic points consumed during the first test is (|3−1|+|3−2|)+(|3−3|+|1−3|)=5.

刚开始疯狂T了两次,原来是这个题目卡cout

#pragma GCC optimize("Ofast,unroll-loops,no-stack-protector,fast-math")
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#pragma comment(linker, "/stack:200000000")
#pragma GCC optimize (2)
#pragma G++ optimize (2)
#include <bits/stdc++.h>
#include <algorithm>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
#define wuyt main
typedef long long ll;
#define HEAP(...) priority_queue<__VA_ARGS__ >
#define heap(...) priority_queue<__VA_ARGS__,vector<__VA_ARGS__ >,greater<__VA_ARGS__ > >
template<class T> inline T min(T &x,const T &y){return x>y?y:x;}
template<class T> inline T max(T &x,const T &y){return x<y?y:x;}
///#define getchar()(p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 21, stdin), p1 == p2) ? EOF : *p1++)
///char buf[(1 << 21) + 1], *p1 = buf, *p2 = buf;
ll read(){ll c = getchar(),Nig = 1,x = 0;while(!isdigit(c) && c!='-')c = getchar();
if(c == '-')Nig = -1,c = getchar();
while(isdigit(c))x = ((x<<1) + (x<<3)) + (c^'0'),c = getchar();
return Nig*x;}
#define read read()
const ll inf = 1e15;
const int maxn = 2e5 + 7;
const int mod = 1e9 + 7;
#define start int wuyt()
#define end return 0
int cnt;
string s;
int num[maxn];
int x[maxn],y[maxn];
start{
    int h=read,w=read,d=read;
    for(int i=0;i<h;i++){
        for(int j=0;j<w;j++){
            int temp=read;
            x[temp]=i;
            y[temp]=j;
        }
    }
    for(int i=d+1;i<=h*w;i++)
        num[i]=num[i-d]+abs(x[i]-x[i-d])+abs(y[i]-y[i-d]);
    int q=read;
    for(int i=1;i<=q;i++){
        int l=read,r=read;
        printf("%d\n",num[r]-num[l]);
    }
    end;
}
 
/**************************************************************
    Language: C++
    Result: 正确
    Time:41 ms
    Memory:4368 kb
****************************************************************/
实际测试金字塔是测试金字塔模型的一种变体,其重点是将不同类型的测试用例分为不同层次,以便更好地管理和执行测试。 在实际测试金字塔中,测试用例被分为三个主要层次:单元测试、集成测试和端到端测试。 单元测试是最底层的一层,目的是在代码的最小单元上进行测试,通常是函数或方法级别。单元测试旨在验证代码的正确性和健壮性,确保每个函数都按预期工作。这些测试通常由开发人员编写和执行,并使用自动化测试工具进行。 集成测试是中间层,目的是测试不同的组件或模块之间的交互。它们确保这些组件在连接时正常工作,并且数据可以正确地在它们之间传递。集成测试可以由开发人员或专门的集成测试团队编写和执行,它们使用自动化测试工具和模拟器来模拟不同组件之间的交互。 端到端测试是最高层,目的是测试整个应用程序或系统的功能,以确保它们按预期工作。这些测试模拟最接近真实用户体验的场景,并检查应用程序的完整性和一致性。端到端测试通常由专门的测试团队编写和执行,并使用自动化测试工具和实际设备来模拟真实世界的使用情况。 实际测试金字塔的目标是在测试过程中提高效率和质量。通过将更多的测试用例放在底层,自动运行和快速执行的单元测试可以尽早发现和解决问题。集成测试和端到端测试则更关注不同组件之间的交互和整体功能。这种层次的组织方式可以确保测试重点在每个阶段都得到适当关注,从而实现更全面的测试覆盖。 总之,实际测试金字塔是一种帮助团队管理和执行测试的模型,它通过将测试用例分为不同层次,以提高测试效率和质量。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值