https://codeforces.com/problemset/problem/1313/B
思路:
分别对最大最小的情况分开构造,只能找找规律这样子。
具体的证明在cf上..
#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=1e5;
typedef long long LL;
inline LL read(){LL x=0,f=1;char ch=getchar(); while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
int main(void)
{
cin.tie(0);std::ios::sync_with_stdio(false);
LL t;cin>>t;
while(t--){
LL n,x,y;cin>>n>>x>>y;
cout<<max(LL(1),min(x+y-n+1,n))<<" ";
cout<<min(x+y-1,n)<<"\n";
}
return 0;
}