Codeforces 1272A Three Friends(욕심)

사고방식: 욕심, 맨 왼쪽과 맨 오른쪽으로 옮기면 코드:
#include
using namespace std;
typedef pair<int,int> P;
typedef long long LL;
#define fi first
#define sc second
#define pb(a) push_back(a)
#define mp(a,b) make_pair(a,b)
#define pt(a) cerr<#define rp(i,n) for(int i=0;i
#define rpn(i,n) for(int i=1;i<=n;i++)
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int q;cin>>q;
while(q--){
int x[3];
rp(i,3)cin>>x[i];
sort(x,x+3);
if(x[2]-x[0]<=2) cout<<"0";
else cout<<(x[2]-x[0]-2)*2<<'';
}
return 0;
}

좋은 웹페이지 즐겨찾기