NC213999. 最短逃生距离
描述
输入描述
第一行输入两个正整数 ,代表密室矩形的边长以及除了皮卡丘之外的 数量。
接下去 行,每行输入两个正整数 ,表示这一只 位于 这个坐标上。
输出描述
对于每只 ,一行输出一个整数代表它所需要的最少移动次数。
示例1
输入:
3 2 1 1 1 2
输出:
0 1
C(clang11) 解法, 执行用时: 543ms, 内存消耗: 6860K, 提交时间: 2020-11-21 00:09:44
#include<stdio.h> #include<math.h> int main(){ int n,m,x,y,j; scanf("%d %d",&n,&m); for(int i=0;i<m;i++){ scanf("%d %d",&x,&y); printf("%d\n",abs(x-y)); } return 0; }
C++(clang++11) 解法, 执行用时: 350ms, 内存消耗: 20360K, 提交时间: 2020-11-25 14:25:25
#include<iostream> using namespace std; int main() { int m,n,x,y; cin>>n>>m; while(m--) { scanf("%d%d",&x,&y); printf("%d\n",x>y?x-y:y-x); } }