QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#397871#5438. Half MixedcaijianhongTL 0ms3640kbC++201.4kb2024-04-24 18:49:042024-04-24 18:49:05

Judging History

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

  • [2024-04-24 18:49:05]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3640kb
  • [2024-04-24 18:49:04]
  • 提交

answer


#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#define debug(...) fprintf(stderr, ##__VA_ARGS__)
#else
#define endl "\n"
#define debug(...) void(0)
#endif
typedef long long LL;
vector<int> knapsack(int n, LL m) {
  // (n, m)
  // (x, (x - 1) * x / 2)
  vector<int> ret;
  while (m) {
    LL x = sqrt(x);
    while (x * (x + 1) / 2 <= m) x += 1;
    while (x * (x - 1) / 2 > m) x -= 1;
    ret.push_back(x);
    n -= x;
    m -= x * (x - 1) / 2;
  }
  assert(n >= 0);
  ret.insert(ret.end(), n, 1);
  return ret;
}
auto solve(int n) { return knapsack(n, 1ll * n * (n + 1) / 4 - n); }
int main() {
#ifndef LOCAL
  cin.tie(nullptr)->sync_with_stdio(false);  
#endif
  int t;
  cin >> t;
  while(t--) {
  int n, m;
  cin >> n >> m;
  if (1ll * m * (m + 1) % 4 == 0) {
    auto ret = solve(m);
    cout << "Yes" << endl;
    for (int t = 1; t <= n; t++) {
      int c = 0;
      for (int len : ret) {
        while (len--) cout << c << " ";
        c ^= 1;
      }
      cout << endl;
    }
  } else if (1ll * n * (n + 1) % 4 == 0) {
    auto ret = solve(n);
    cout << "Yes" << endl;
      int c = 0;
      for (int len : ret) {
        while (len--) {
          for (int t = 1; t <= m; t++)
          cout << c << " ";
          cout << endl;
        }
        c ^= 1;
      }
  } else {
    cout << "No" << endl;
  }
  }
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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
Time Limit Exceeded

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

result: