QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#529675#9221. Missing Boundariesucup-team3161#WA 149ms26636kbC++173.4kb2024-08-24 13:40:252024-08-24 13:40:25

Judging History

你现在查看的是最新测评结果

  • [2024-08-24 13:40:25]
  • 评测
  • 测评结果:WA
  • 用时:149ms
  • 内存:26636kb
  • [2024-08-24 13:40:25]
  • 提交

answer

// what is matter? never mind. 
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,sse4,popcnt,abm,mmx,avx,avx2") 
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rep(i,a,b) for(int i=(a);i>=(b);--i)
#define ll long long
//#define int long long
//#define ull unsigned long long
#define SZ(x) ((int)((x).size()))
#define ALL(x) (x).begin(),(x).end()
using namespace std;
inline int read()
{
    char c=getchar();int x=0;bool f=0;
    for(;!isdigit(c);c=getchar())f^=!(c^45);
    for(;isdigit(c);c=getchar())x=(x<<1)+(x<<3)+(c^48);
    if(f)x=-x;return x;
}

#define mod 1000000007
struct modint{
	unsigned int x;
	modint(int o=0){x=o;}
	modint &operator = (int o){return x=o,*this;}
	modint &operator +=(modint o){return x=x+o.x>=mod?x+o.x-mod:x+o.x,*this;}
	modint &operator -=(modint o){return x=x<o.x?x-o.x+mod:x-o.x,*this;}
	modint &operator *=(modint o){return x=1ll*x*o.x%mod,*this;}
	modint &operator ^=(int b){
		modint a=*this,c=1;
		for(;b;b>>=1,a*=a)if(b&1)c*=a;
		return x=c.x,*this;
	}
	modint &operator /=(modint o){return *this *=o^=mod-2;}
	friend modint operator +(modint a,modint b){return a+=b;}
	friend modint operator -(modint a,modint b){return a-=b;}
	friend modint operator *(modint a,modint b){return a*=b;}
	friend modint operator /(modint a,modint b){return a/=b;}
	friend modint operator ^(modint a,int b){return a^=b;}
	friend bool operator ==(modint a,modint b){return a.x==b.x;}
	friend bool operator !=(modint a,modint b){return a.x!=b.x;}
	bool operator ! () {return !x;}
	modint operator - () {return x?mod-x:0;}
	bool operator <(const modint&b)const{return x<b.x;}
};
inline modint qpow(modint x,int y){return x^y;}

vector<modint> fac,ifac,iv;
inline void initC(int n)
{
	if(iv.empty())fac=ifac=iv=vector<modint>(2,1);
	int m=iv.size(); ++n;
	if(m>=n)return;
	iv.resize(n),fac.resize(n),ifac.resize(n);
	For(i,m,n-1){
		iv[i]=iv[mod%i]*(mod-mod/i);
		fac[i]=fac[i-1]*i,ifac[i]=ifac[i-1]*iv[i];
	}
}
inline modint C(int n,int m){
	if(m<0||n<m)return 0;
	return initC(n),fac[n]*ifac[m]*ifac[n-m];
}
inline modint sign(int n){return (n&1)?(mod-1):(1);}

#define fi first
#define se second
#define pb push_back
#define mkp make_pair
typedef pair<int,int>pii;
typedef vector<int>vi;

#define maxn 2000006
#define inf 0x3f3f3f3f

int n,a[maxn],b[maxn],m,c;


void work()
{
	n=read(),m=read();
	For(i,1,n)a[i]=read(),b[i]=read();
	c=0;
	map<int,int>mp;
	For(i,1,n){
		if(a[i]==-1 && b[i]==-1) ++c;
		else {
			if(a[i]!=-1 && b[i]!=-1) {
				mp[a[i]]++;
				mp[b[i]+1]--;
			}
			else if(a[i]!=-1) mp[a[i]]++,mp[a[i]+1]--;
			else if(b[i]!=-1) mp[b[i]]++,mp[b[i]+1]--;
		}
	}
	int pres=0;
	int cov=0,lst=0;
	for(auto [x,y]:mp){
		if(pres){
			cov+=(x-lst);
		}
		lst=x;
		pres+=y;
		if(pres>1){
			puts("NIE");
			return;
		}
	}
	int mx=m-cov;
	
	vector<pii>o;
	For(i,1,n){
		if(a[i]!=-1) o.pb(mkp(a[i],0));//toR
		if(b[i]!=-1) o.pb(mkp(b[i],1));//toL
	}
	o.pb(mkp(0,1));
	o.pb(mkp(m+1,0));
	sort(ALL(o));
	
	int nd=0;
	For(i,0,SZ(o)-2){
		if(o[i].se==1 && o[i+1].se==0 && o[i].fi+1!=o[i+1].fi){
		//	cout<<"ND "<<o[i].fi<<" "<<o[i+1].fi<<"\n";
			++nd;
		}
	}
	
	int mn=nd;
	
//	cout<<"mn,mx "<<mn<<" "<<mx<<"\n";
	if(mn<=n && n<=mx) puts("TAK");
	else puts("NIE");
}

signed main()
{
	int T=read();
	while(T--)work();
	return 0;
}
/*

*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5676kb

input:

3
4 51
1 -1
11 50
-1 -1
-1 10
3 2
-1 -1
-1 -1
-1 -1
2 3
1 2
2 3

output:

TAK
NIE
NIE

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 149ms
memory: 26636kb

input:

1
200000 1000000000
490669427 -1
224278942 224287156
821104480 -1
861696576 861702036
807438935 807440055
574078002 574083717
465630141 -1
195378188 -1
-1 13500961
-1 977536179
92893115 -1
-1 661145418
-1 215804863
-1 685338515
544348999 -1
465532902 -1
130346949 -1
-1 526666304
635604584 635605404
...

output:

TAK

result:

ok single line: 'TAK'

Test #3:

score: 0
Accepted
time: 0ms
memory: 5700kb

input:

3
4 51
1 -1
11 50
-1 -1
-1 10
3 2
-1 -1
-1 -1
-1 -1
2 3
1 2
2 3

output:

TAK
NIE
NIE

result:

ok 3 lines

Test #4:

score: -100
Wrong Answer
time: 121ms
memory: 22816kb

input:

1
197838 400000
34167 34169
352180 -1
235963 -1
-1 -1
160401 160405
347288 -1
270353 270354
214502 214504
183243 183245
-1 -1
-1 36193
-1 -1
-1 17557
273498 273500
269137 -1
395099 395100
285515 285518
-1 -1
71041 71042
324060 -1
-1 385151
-1 379645
-1 -1
-1 185142
-1 191584
89259 89261
328347 32834...

output:

NIE

result:

wrong answer 1st lines differ - expected: 'TAK', found: 'NIE'