QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#111972#5438. Half MixedshiyihangxsWA 223ms3524kbC++142.0kb2023-06-09 11:44:482023-06-09 11:44:51

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-06-09 11:44:51]
  • 评测
  • 测评结果:WA
  • 用时:223ms
  • 内存:3524kb
  • [2023-06-09 11:44:48]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define l(x) (x<<1)
#define r(x) (x<<1|1)
#define mpr make_pair
//mt19937_64 ra(time(0) ^ (*new char));
//ios::sync_with_stdio(false);
//cin.tie(0); cout.tie(0);
const ll SIZE = 1000005;
const ll mod = 998244353;
ll T;
ll n, m;
ll a[SIZE], tot;
bool ff ;

inline ll rd(){
	ll x = 0, f = 1;
	char ch = getchar();
	while(ch < '0' || ch > '9'){
		if(ch == '-') f = -1;
		ch = getchar();
	}
	while(ch >= '0' && ch <= '9'){
		x = (x<<1) + (x<<3) + (ch^48);
		ch = getchar();
	}
	return x*f;
}

ll power(ll x, ll y){
	ll jl = 1;
	while(y){
		if(y & 1) jl = (jl * x) % mod;
		x = (x * x) % mod;
		y >>= 1;
	}
	return jl;
}

void dfs(ll las, ll ss, ll mb){
//	cout<<las<<" "<<ss<<endl;
	if(las == 0){
		if(ss == mb) ff = 1;
		return;
	}
	if(ss > mb || ss + las < mb || (mb-ss)*a[tot]*a[tot] < las) return;
	for(int i = min(min((ll)floor(sqrt((double)las)), a[tot]), mb-ss); i >= 1; i--){
		ss += i;
		a[++tot] = i;
		dfs(las-i*i, ss, mb);
		if(ff) return;
		ss -= i, tot--;
	}
}

int main(){
//	freopen("My.out", "w", stdout);
	T = rd();
	while(T--){
		n = rd(), m = rd();
		if(((n*(n+1)/2)&1) && ((m*(m+1)/2)&1)) printf("No\n");
		else{
			printf("Yes\n");
			ff = 0; a[0] = (1ll<<30);
			if(n*(n+1)%4 == 0){
				tot = 0;
				dfs(n*(n-1)/2, 0, n);
//				cout<<"zrdz\n";
				ll now = 0, hh = 1, uu = 1;
				for(ll i = 1; i <= n; i++){
					now++;
					if(now > a[hh]) now = 1, hh++, uu = !uu;
					for(ll j = 1; j <= m; j++) printf("%d ", uu);
					puts("");
				}
			}
			else{
				tot = 0;
				dfs(m*(m-1)/2, 0, m);				
				for(ll i = 1; i <= n; i++){
					ll now = 0, hh = 1, uu = 1;
					for(ll j = 1; j <= m; j++){
						now++;
						if(now > a[hh]) now = 1, hh++, uu = !uu;
						printf("%d ", uu);
					}
					puts("");
				}
			}
		}
	}
	return 0;
}

/*
19
1 1
1 2
1 3
1 4
1 5
1 6
2 2
2 3
2 4
2 5
2 6
3 3
3 4
3 5
3 6
4 4
4 5
4 6
5 5

5
2 6
2 7
2 8
2 9
2 10
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
2 3
1 1

output:

Yes
1 0 1 
1 0 1 
No

result:

ok OK, Accepted. (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 223ms
memory: 3464kb

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
1 0 1 
No
Yes
1 
0 
1 
Yes
1 1 0 1 
Yes
1 0 1 
1 0 1 
Yes
1 1 
0 0 
1 1 
Yes
1 
1 
0 
1 
No
Yes
1 1 0 1 
1 1 0 1 
Yes
1 1 1 
0 0 0 
1 1 1 
Yes
1 1 
1 1 
0 0 
1 1 
No
No
No
Yes
1 1 1 1 
0 0 0 0 
1 1 1 1 
Yes
1 1 1 
1 1 1 
0 0 0 
1 1 1 
No
No
Yes
1 1 1 1 0 0 1 
No
Yes
1 1 1 1 1 
0 0 0 0 0...

result:

wrong answer 21 Mixed Submatrices Found, but 18 Expected (test case 29)