解法:

因为题中说了,最多只有一个位置有奇数个人。

所以我们可以先check一下,如果总人数是偶数那么显然就是

Poor Qin Teng

接下来的话我们只需要二分出那个奇数的位置,检验l到这个位置有多少个人即可。

得到位置之后直接O(n)求一下该位置的人数即可。

//BZOJ 1271 binary

#include <bits/stdc++.h>
using namespace std;
const int maxn = 200010;
typedef long long LL;
LL s[maxn], e[maxn], d[maxn];
int n;
LL check(LL x){
    LL re = 0;
    for(int i=1; i<=n; i++){
        if(s[i]>x) continue;
        LL tmp = min(x, e[i]);
        re += (tmp-s[i])/d[i]+1;
    }
    return re;
}
int main()
{
    int T;
    scanf("%d", &T);
    while(T--){
        scanf("%d", &n);
        LL maxe = 0;
        for(int i=1; i<=n; i++) scanf("%lld%lld%lld", &s[i],&e[i],&d[i]), maxe = max(maxe, e[i]);
        LL tmp = check(maxe);
        if((tmp&1)==0){
            puts("Poor QIN Teng:(");
            continue;
        }
        LL l = 0, r = maxe, ans;
        while(l<=r){
            int mid=(l+r)/2;
            if(check(mid)&1) ans=mid,r=mid-1;
            else l=mid+1;
        }
        LL cnt=0;
        for(int i=1;i<=n;i++){
            if(s[i]>ans) continue;
            if(e[i]<ans) continue;
            if((ans-s[i])%d[i]==0) cnt++;
        }
        printf("%lld %lld\n", ans, cnt);
    }
    return 0;
}