QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#400766 | #5438. Half Mixed | TulipeNoire | WA | 150ms | 3864kb | C++14 | 1.9kb | 2024-04-27 15:57:54 | 2024-04-27 15:57:55 |
Judging History
answer
#include<bits/stdc++.h>
#define lowbit(x) ((x)&-(x))
using namespace std;
mt19937_64 myrand(407223);
using LL=long long;
using uint=unsigned;
using pii=pair<int,int>;
using vi=vector<int>;
using vp=vector<pii>;
template<typename T>inline void read(T&t){
t=0;
char c=getchar();
int f=1;
while (!isdigit(c)) f=c=='-'?-f:f,c=getchar();
while (isdigit(c)) t=(t<<3)+(t<<1)+c-'0',c=getchar();
t*=f;
return;
}
template<typename T,typename...Args>inline void read(T&t,Args&...args){read(t),read(args...);}
template<typename T>void write(T x){if(x>=10)write(x/10);putchar(x%10+'0');return;}
template<typename T>inline bool chkmax(T&x,T y) {return y>x?(x=y,1):0;}
template<typename T>inline bool chkmin(T&x,T y) {return y<x?(x=y,1):0;}
const int N=1000005;
int a[N],tot;
inline LL pw(int x) {
return 1ll*x*(x+1)/2-x;
}
inline void Gen(int n) {
tot=0;
LL need=1ll*n*(n+1)/4-n;
int col=0;
while (need) {
int t=1;
for (int i=20;i>=0;i--) {
if (pw(t+(1<<i))<=need) t+=(1<<i);
}
for (int i=1;i<=t;i++) a[++tot]=col;
col^=1,need-=pw(t);
}
for (int i=tot;i<=n;i++) a[i]=col,col^=1;
// printf("%d\n",tot);
}
inline void solve() {
int n,m;
read(n,m);
LL mn=1ll*n*(n+1)/2,mm=1ll*m*(m+1)/2;
if (mn*mm%2==1) {
puts("No");
return;
}
puts("Yes");
if (mn%2==1) {
Gen(m);
for (int i=1;i<=n;i++) {
for (int j=1;j<=m;j++) {
printf("%d ",a[j]);
}
puts("");
}
} else {
Gen(n);
for (int i=1;i<=n;i++) {
for (int j=1;j<=m;j++) {
printf("%d ",a[i]);
}
puts("");
}
}
}
int main() {
int T;
read(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: 3864kb
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: 150ms
memory: 3836kb
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 0 1 0 1 Yes 1 0 1 1 0 1 Yes 1 1 0 0 1 1 Yes 0 1 0 1 No Yes 0 1 0 1 0 1 0 1 Yes 1 1 1 0 0 0 1 1 1 Yes 0 0 1 1 0 0 1 1 No No No Yes 1 1 1 1 0 0 0 0 1 1 1 1 Yes 0 0 0 1 1 1 0 0 0 1 1 1 No No Yes 0 0 0 0 1 0 1 No Yes 1 1 1 1 1 0 0 0 0 0...
result:
wrong answer 6 Mixed Submatrices Found, but 5 Expected (test case 7)