QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#628428 | #5117. Find Maximum | 523555337 | WA | 0ms | 11536kb | C++14 | 2.2kb | 2024-10-10 20:12:06 | 2024-10-10 20:12:07 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
#define ll long long
#define ull unsigned long long
#define mp make_pair
#define pb push_back
#define se second
#define fi first
#define ret(i,a,b) for(int i = (a);i<=(b);++i)
const int N=1e5+5;
const int M=1e6+5;
const ll inf=1e18;
const ll mod=998244353;
ll ksm(ll a,ll b)
{
ll ret=1;
while(b)
{
if(b&1) ret=ret*a%mod;
a=a*a%mod;
b>>=1;
}
return ret;
}
inline int read()
{
int 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 n,m,k;
ll p[M],ans[M];
void init()
{
ret(i,1,M) p[i]=1ll*i*i;
return ;
}
void work(ll num)
{
int tot=0;
//int k=0;
ll anss=0;
int ff=0;
while(tot!=m)
{
//printf("m=%lld\n",m);
int t=upper_bound(p+1,p+M+1,(m*m-m)/2-anss)-p;
//printf("tot=%d,t=%d,anss=%lld\n",tot,t,anss);
while((p[t]+anss)*2>(m*m-m)) t--;
anss+=p[t];
tot+=t;
ans[++k]=t;
//printf("tot=%d,t=%d,anss=%lld\n",tot,t,anss);
ff++;
if(ff>=10) break;
}
return ;
}
void solve()
{
cin>>n>>m;
k=0;
if((n*(n+1)/2)%2==1&&(m*(m+1)/2)%2==1)
{
cout<<"No\n";
return ;
}
bool swaped=0;
if(n*(n+1)%4==0)
{
swap(n,m);
swaped=1;
}
work(m);
cout<<"Yes\n";
if(!swaped)
{
vector<vector<int>> y(n+1,vector<int>(m+1));
int w=0;
int tot=0;
ret(i,1,k)
{
ret(j,1,ans[i])
{
++tot;
ret(x,1,n)
{
y[x][tot]=w;
}
}
w=1-w;
}
ret(i,1,n)
{
ret(j,1,m)
cout<<y[i][j]<<" ";
cout<<endl;
}
}
else
{
vector<vector<int>> y(m+1,vector<int>(n+1));
int w=0;
int tot=0;
ret(i,1,k)
{
ret(j,1,ans[i])
{
++tot;
ret(x,1,m)
{
y[x][tot]=w;
}
}
w=1-w;
}
ret(i,1,m)
{
ret(j,1,n)
cout<<y[i][j]<<" ";
cout<<endl;
}
}
//ret(i,1,k) cout<<ans[i]<<" ";
//cout<<endl;
return ;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int _=1;
cin>>_;
init();
while(_--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 11536kb
input:
10 1 2 1 3 1 4 1 5 2 3 2 4 2 5 3 4 3 5 4 5
output:
No Yes 0 1 0 Yes 0 0 1 0 No Yes 0 1 0 0 1 0 Yes 0 0 1 0 0 0 1 0 No Yes 0 1 0 0 0 1 0 0 0 1 0 0 Yes 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 Yes 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0
result:
wrong output format Expected integer, but "No" found