QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#153798#5438. Half Mixedvalue0WA 167ms3768kbC++202.0kb2023-08-31 01:07:122023-08-31 01:07:12

Judging History

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

  • [2023-08-31 01:07:12]
  • 评测
  • 测评结果:WA
  • 用时:167ms
  • 内存:3768kb
  • [2023-08-31 01:07:12]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
ll n,m,k;

void solve()
{
	cin>>n>>m;
	ll all = n * (n + 1) / 2 * m * (m + 1) / 2;
	if(all & 1)
	{
		puts("No");
		return;
	}
	ll s,t;
	if(n * (n + 1) % 4 == 0)
	{
		s = n * (n + 1) / 4;
		t = n;
	}
	else if(m * (m + 1) % 4 == 0)
	{
		s = m * (m + 1) / 4;
		t = m;
	}
	else
	{
		puts("No");
		return;
	}
	auto check = [&](ll mid)
	{
		ll r = mid * (mid + 1) / 2;
		if(r <= s && (s - r) >= t - mid)
		{
			return true;
		}
		return false;
	};
	vector<ll> cnt;
	ll res = s;
//	cout<<s<<endl;
	while(s)
	{
		ll a = 1;
		while(a * (a + 1) / 2 <= s)
		{
			a++;
		}
		if(s == res)
		{
			a -= 2;
		}
		else
		{
			a--;
		}
		s -= a * (a + 1) /2;
		cnt.push_back(a);
//		cout<<a<<endl;
	}
//	while(s)
//	{
//		ll l = 1;
//		ll r = s;
//		while(l + 1 < r)
//		{
//			ll mid = l + r >> 1;
//			if(check(mid))
//			{
//				l = mid;
//			}
//			else
//			{
//				r = mid;
//			}
//		}
//		t -= l;
//		s -= l * (l + 1) / 2;
//		cnt.push_back(l);
//	}
	vector<vector<int>> g(n + 10,vector<int>(m + 10));
	if(n * (n + 1) % 4 == 0)
	{
		ll cur = 1;
		for(int i = 0;i<cnt.size();i++)
		{
			int len = cnt[i];
			for(int j = cur;j < cur + len;j++)
			{
				for(int k = 1;k<=m;k++)
				{
					if(i & 1)
					{
						g[j][k] = 1;
					}
					else
					{
						g[j][k] = 0;
					}
				}
			}
			cur += len;
		}
	}
	else if(m * (m + 1) % 4 == 0)
	{
		ll cur = 1;
		for(int i = 0;i<cnt.size();i++)
		{
			int len = cnt[i];
			for(int j = cur;j<cur + len;j++)
			{
				for(int k = 1;k<=n;k++)
				{
					if(i & 1)
					{
						g[k][j] = 1;
					}
					else
					{
						g[k][j] = 0;
					}
				}
			}
			cur += len;
		}
	}
	puts("Yes");
	for(int i = 1;i<=n;i++)
	{
		for(int j = 1;j<=m;j++)
		{
			printf("%d ",g[i][j]);
		}
		puts("");
	}
	
	
}

int main()
{
	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: 1ms
memory: 3576kb

input:

2
2 3
1 1

output:

Yes
0 1 0 
0 1 0 
No

result:

ok OK, Accepted. (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 167ms
memory: 3768kb

input:

5382
1 1
1 2
2 1
1 3
2 2
3 1
1 4
2 3
3 2
4 1
1 5
2 4
3 3
4 2
5 1
1 6
2 5
3 4
4 3
5 2
6 1
1 7
2 6
3 5
4 4
5 3
6 2
7 1
1 8
2 7
3 6
4 5
5 4
6 3
7 2
8 1
1 9
2 8
3 7
4 6
5 5
6 4
7 3
8 2
9 1
1 10
2 9
3 8
4 7
5 6
6 5
7 4
8 3
9 2
10 1
1 11
2 10
3 9
4 8
5 7
6 6
7 5
8 4
9 3
10 2
11 1
1 12
2 11
3 10
4 9
5 8
6 ...

output:

No
No
No
Yes
0 1 0 
No
Yes
0 
1 
0 
Yes
0 1 1 0 
Yes
0 1 0 
0 1 0 
Yes
0 0 
1 1 
0 0 
Yes
0 
1 
1 
0 
No
Yes
0 1 1 0 
0 1 1 0 
Yes
0 0 0 
1 1 1 
0 0 0 
Yes
0 0 
1 1 
1 1 
0 0 
No
No
No
Yes
0 0 0 0 
1 1 1 1 
0 0 0 0 
Yes
0 0 0 
1 1 1 
1 1 1 
0 0 0 
No
No
Yes
0 0 0 1 1 1 0 
No
Yes
0 0 0 0 0 
1 1 1 1 1...

result:

wrong answer 15 Mixed Submatrices Found, but 14 Expected (test case 22)