QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#526528#5438. Half MixedpotentialWA 25ms3584kbC++203.2kb2024-08-21 17:03:002024-08-21 17:03:00

Judging History

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

  • [2024-08-21 17:03:00]
  • 评测
  • 测评结果:WA
  • 用时:25ms
  • 内存:3584kb
  • [2024-08-21 17:03:00]
  • 提交

answer

# include <bits/stdc++.h>
using namespace std;
# define IOS ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
# define int long long
# define lowbit(x) (x & (-x))
# define fi first
# define se second
// # define endl '\n'

inline int Read();

typedef pair<int, int> PII;
const int INF = 0x3f3f3f3f;
const int MOD = 998244353;
const int N = 1e6 + 10;

map <int, int> mp;

int ok(int x, int y, int z, int w){
    if(x * (x + 1) * 2 / 4 == y){
        if(x + z == w) return 1;
        return 0; 
    } else if(x * (x + 1) * 2 / 4 < y) {
        return 1;
    }
    else{
       return 0; 
    } 
}
void Solve(){
    int n, m;
    cin >> n >> m;
    if((n * m * (n + 1) * (m + 1) / 4) % 2 != 0){
        cout << "No\n";
        return;
    }
    int sum = m * (m + 1) * 2 / 4;
    int t = sum / 2;
    vector <int> v;
    int l = 0, r = m, mid;
    int num = 0;
    if(sum % 2 == 0){
        while(1){
            l = 0, r = m;
            while(l < r){
                mid = l + r + 1 >> 1;
                if(ok(mid, t, num, m)) l = mid;
                else r = mid - 1;
            }
            if(l == 0) break;
            v.push_back(l);
            num += l;
            t -= l * (l + 1) * 2 / 4;
            if(t == 0) break;
            else {
                t --;
                v.push_back(1);
                num ++;
            }
            if(num == m) break;
        }
        if(num == m){
            cout << "Yes\n";
            for(int i = 1; i <= n; i ++){
                for(int j = 0; j < v.size(); j ++){
                    for(int k = 0; k < v[j]; k ++){
                    cout << (j & 1) <<" "; 
                    }
                }
                cout << '\n';
            }
            return;
        }
    }
    sum = n * (n + 1) * 2 / 4;
    t = sum / 2;
    if(sum % 2 == 0){
        num = 0;
        v.clear();
        while(1){
            l = 0, r = n;
            while(l < r){
                mid = l + r + 1 >> 1;
                if(ok(mid, t, num, n)) l = mid;
                else r = mid - 1;
            }
            if(l == 0) break;
            v.push_back(l);
            num += l;
            t -= l * (l + 1) * 2 / 4;
            if(t == 0) break;
            else {
                t --;
                v.push_back(1);
                num ++;
            }
            if(num == n) break;
        }
        if(num == n){
            cout << "Yes\n";
            int cnt = 0;
            for(int i = 0; i < v.size(); i ++){
                for(int j = 1; j <= v[i]; j ++){
                    for(int k = 0; k < m; k ++){
                        cout << (cnt & 1) <<" ";
                    }
                    cout <<"\n";
                }
                cnt ++;
            }
            return;
        }
    }
    cout << "No\n";
   
    

    
   

}
signed main(){
    // IOS;
    int T = 1;
    cin >> T;
    while (T--) 
        Solve();
    return 0;
}
inline int Read(){
    int x = 0, f = 1; char c = getchar();
    while (c < '0' || c > '9'){ if (c == '-') f = -1; c = getchar();}
    while (c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}

詳細信息

Test #1:

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

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: 25ms
memory: 3472kb

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

result:

wrong answer Wrong Verdict (test case 67)