QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#790069#5438. Half MixedmyloveATRIWA 113ms3676kbC++201.8kb2024-11-28 00:27:532024-11-28 00:27:54

Judging History

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

  • [2024-11-28 00:27:54]
  • 评测
  • 测评结果:WA
  • 用时:113ms
  • 内存:3676kb
  • [2024-11-28 00:27:53]
  • 提交

answer

#include<bits/stdc++.h>
#include<queue>
#include<string.h>
#include<iostream>
#include<map>
#include<vector>
#include<algorithm>
#define int long long
#define ll long long
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define nl t[n].l
#define nr t[n].r
#define gcd __gcd
#define itn int
//#define db long double
using namespace std;
const int maxn=1e6+50;
const int inf=1e18+10;
const int INF=2e18;
const int mod=998244353;
//const db eps=1e-8;
//const db pi=acos(-1.0);
#define pop_count __builtin_popcountll
int a[maxn];
void solve()
{
    int n,m;
    cin>>m>>n;
    int tot=(n*(n+1)/2)*(m*(m+1)/2);
    if(tot%2==1)
    {
        cout<<"No\n";
        return;
    }
    int f=0;
    cout<<"Yes\n";
    if((n*(n+1))%4!=0)
    {
        f=1;
        swap(n,m);
    }
    int sum=n*(n+1)/4;
    int now=0;
    int id=1;
    int typ=1;
    //n-(id+mid-1)
    while(id<=n)
    {
        int l=1,r=n-id+1;
        int res;
        while(l<=r)
        {
            int mid=l+r>>1;
            if(now+mid*(mid+1)/2+n-id-mid+1<=n)
            {
                l=mid+1;
                res=mid;
            }
            else r=mid-1;
        }
        now+=res*(res+1)/2;
        while(res--)
        {
            a[id]=typ;
            id++;
        }
        typ^=1;
    }
    if(f==0)
    {
        rep(i,1,m)
        {
            rep(j,1,n) cout<<a[j]<<' ';
            cout<<'\n';
        }
    }
    else{
        rep(i,1,n)
        {
            rep(j,1,m) cout<<a[i]<<' ';
            cout<<'\n';
        }
    }
}

signed main()
{
   ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
   int __=1;
   //srand((time(0)));

   cin>>__;

  while(__--)
  {
       solve();
  }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 113ms
memory: 3604kb

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