QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#475613#6746. Merge the Rectanglesszy10010WA 87ms216972kbC++173.3kb2024-07-13 15:55:172024-07-13 15:55:17

Judging History

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

  • [2024-07-13 15:55:17]
  • 评测
  • 测评结果:WA
  • 用时:87ms
  • 内存:216972kb
  • [2024-07-13 15:55:17]
  • 提交

answer

#include <map>
#include <set>
#include <queue>
#include <deque>
#include <cmath>
#include <vector>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define pp pop_back()
#define int long long
#define lowbit(x) ((x)&(-x))
#define double long double
#define sf(x) scanf("%lld",&x)
#define sff(x,y) scanf("%lld %lld",&x,&y)
#define all(x) (x).begin(), (x).end()
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
typedef unsigned long long ULL;
typedef pair<int,int>PII;
const int N=1510,INF=4e18;
int n,m;
int r[N][N],c[N][N];
int cutr[N*N],cutc[N*N];
int cntr[N*N],cntc[N*N];
pair<int,int> jian[N*N];
int mpr[N][N],mpc[N][N];
//map<PII,int>mpr,mpc;
int idx=1,hh;
vector<int>cut[N*N];
void solve()
{
	cin>>n>>m;
	char cr;
	for(int i=1;i<=n-1;i++)
		for(int j=1;j<=m;j++)
		{
			cin>>cr;
			if(cr=='1')r[i][j]=1;
			else r[i][j]=0;
		}
	for(int i=1;i<=n;i++)
		for(int j=1;j<=m-1;j++)
		{
			cin>>cr;
			if(cr=='1')c[i][j]=1;
			else c[i][j]=0;
		}	
	bool bl;
	for(int i=1;i<=n-1;i++)
	{
		bl=false;
		for(int j=1;j<=m;j++)
		{	
			if(r[i][j]==1)mpr[i][j]=idx,bl=true;//cout<<"行的"<<i<<" "<<j<<" 为"<<idx<<endl;
			else if(bl)idx++,bl=false;
		}
		if(bl)idx++,bl=false;
	}
	hh=idx-1;
	for(int j=1;j<=m-1;j++)
	{
		bl=false;
		for(int i=1;i<=n;i++)
		{
			if(c[i][j]==1)mpc[i][j]=idx,bl=true;//cout<<"列的"<<i<<" "<<j<<" 为"<<idx<<endl;
			else if(bl)idx++,bl=false;
		}
		if(bl)idx++,bl=false;
	}
	
	for(int i=1;i<=n-1;i++)
		for(int j=1;j<=m;j++)
		{
			if(r[i][j]==1)
			{
				int now=mpr[i][j];
				if(j==1&&c[i][j]+c[i+1][j]==2)
					cutc[mpc[i][j]]++,cut[now].pb(mpc[i][j]);
				else if(j==m&&c[i][j-1]+c[i+1][j-1]==2)
					cutc[mpc[i][j-1]]++,cut[now].pb(mpc[i][j-1]);
				else 
				{
					if(c[i][j]+c[i+1][j]==2)
						cutc[mpc[i][j]]++,cut[now].pb(mpc[i][j]);
					if(c[i][j-1]+c[i+1][j-1]==2)
						cutc[mpc[i][j-1]]++,cut[now].pb(mpc[i][j-1]);
				}
			}
		}
	for(int j=1;j<=m-1;j++)
		for(int i=1;i<=n;i++)
		{
			if(c[i][j]==1)
			{
				int now=mpc[i][j];
				if(i==1&&r[i][j]+r[i][j+1]==2)
					cutr[mpr[i][j]]++,cut[now].pb(mpr[i][j]);
				else if(i==n&&r[i-1][j]+r[i-1][j+1]==2)
					cutr[mpr[i-1][j]]++,cut[now].pb(mpr[i-1][j]);
				else 
				{
					if(r[i][j]+r[i][j+1]==2)
						cutr[mpr[i][j]]++,cut[now].pb(mpr[i][j]);
					if(r[i-1][j]+r[i-1][j+1]==2)
						cutr[mpr[i-1][j]]++,cut[now].pb(mpr[i-1][j]);
				}
			}
		}
//	priority_queue<PII,vector<PII>,cmp>p;
//	multiset<PII,cmp>p;
	queue<PII>p;
	for(int i=1;i<idx;i++)
	{
		if(i<=hh)jian[i]={cutr[i],i};//cout<<"cutc"<<cutr[i]<<" "<<i<<endl;
		else jian[i]={cutc[i],i};//cout<<"cutr"<<cutc[i]<<" "<<i<<endl;
		if(jian[i].fi==0)p.push(jian[i]);
	}
	int cnt=0;
	while(p.size())
	{
		cnt++;
		auto t=p.front();
		p.pop();
//		cout<<"now"<<t.fi<<" "<<jian[t.se]<<"编号"<<t.se<<endl;
//		cout<<t.fi<<" "<<t.se<<endl;
		for(int i=0;i<cut[t.se].size();i++)
		{
//			cout<<"cut了"<<cut[t.se][i]<<" ";
			int now=cut[t.se][i];
			jian[now].fi--;
			if(jian[now].fi==0)p.push(jian[now]);
		}
	}
	if(cnt==idx-1)cout<<"YES\n";
	else cout<<"NO\n";
	return;
}
signed main()
{
	IOS;
	int T=1;
//	cin>>T;
	while(T--)
		solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 69644kb

input:

3 4
0000
0111
101
101
110

output:

YES

result:

ok answer is YES

Test #2:

score: 0
Accepted
time: 4ms
memory: 70708kb

input:

3 3
110
011
01
11
10

output:

NO

result:

ok answer is NO

Test #3:

score: 0
Accepted
time: 50ms
memory: 93984kb

input:

1500 1500
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

output:

YES

result:

ok answer is YES

Test #4:

score: -100
Wrong Answer
time: 87ms
memory: 216972kb

input:

1500 1500
11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:

NO

result:

wrong answer expected YES, found NO