CF 605 div3 A.Three Friends

题目

Three friends are going to meet each other. Initially, the first friend stays at the position x=a, the second friend stays at the position x=b and the third friend stays at the position x=c on the coordinate axis Ox.
In one minute each friend independently from other friends can change the position x by 1 to the left or by 1 to the right (i.e. set x:=x−1 or x:=x+1) or even don’t change it.
Let’s introduce the total pairwise distance — the sum of distances between each pair of friends. Let a′, b′ and c′ be the final positions of the first, the second and the third friend, correspondingly. Then the total pairwise distance is |a′−b′|+|a′−c′|+|b′−c′|, where |x| is the absolute value of x.
Friends are interested in the minimum total pairwise distance they can reach if they will move optimally. Each friend will move no more than once. So, more formally, they want to know the minimum total pairwise distance they can reach after one minute.
You have to answer q independent test cases.
Input
The first line of the input contains one integer q (1≤q≤1000) — the number of test cases.
The next q lines describe test cases. The i-th test case is given as three integers a,b and c (1≤a,b,c≤109) — initial positions of the first, second and third friend correspondingly. The positions of friends can be equal.
Output
For each test case print the answer on it — the minimum total pairwise distance (the minimum sum of distances between each pair of friends) if friends change their positions optimally. Each friend will move no more than once. So, more formally, you have to find the minimum total pairwise distance they can reach after one minute.
Example
input
8
3 3 4
10 20 30
5 5 5
2 4 3
1 1000000000 1000000000
1 1000000000 999999999
3 2 5
3 2 6
output
0
36
0
0
1999999994
1999999994
2
4

考点

brute force;greedy;math;sortings

题意

在x轴上有三个点,对每个点只能操作一次,可执行操作:左移一个单位,右移一个单位,或者不动。求操作之后,两两之间距离的最小距离和。

思路

先对三个数排序,保证最小值最大值的朋友不变,第二大的数始终在两点的中间,距离之和其实就是最大值点和最小值点距离的两倍,所以只需求最大值最小值的差最小即可。

AC代码

#include <bits/stdc++.h>
#include <time.h>
#include <iomanip>
#define _CRT_SECURE_NO_WARNINGS
const double pi=acos(-1.0);
const int mmax=0x3f3f3f3f;
const int minn=0xc0c0c0c0;
const int maxn=1005;
typedef long long ll;
using namespace std;
int a[maxn];
//int dir[4][2]={{0,1},{1,0},{0,-1},{-1,0}};int dir[8][2]={{-1,-1},{0,-1},{1,-1},{-1,0},{1,0},{-1,1},{0,1},{1,1}};
//atoi(string.c_str());//setw()<<setfill('0');//fixed<<setprecision();
int main () {
 ios::sync_with_stdio(false);
 cin.tie(0);cout.tie(0);
 int t;cin>>t;
 while(t--){
  for(int i=1;i<=3;i++){
   cin>>a[i];
  }
  sort(a+1,a+4);
  if(a[1]<a[3])
   a[1]++;
  if(a[3]>a[1])
   a[3]--;
  cout<<2*(a[3]-a[1])<<endl;
 } 
 return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值