QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#606075#6336. CouncilMispertion#0 357ms187880kbC++233.1kb2024-10-02 21:57:442024-10-02 21:57:45

Judging History

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

  • [2024-10-02 21:57:45]
  • 评测
  • 测评结果:0
  • 用时:357ms
  • 内存:187880kb
  • [2024-10-02 21:57:44]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef long long ll;
#define int ll
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

#define pb push_back
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
#define mispertion ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define F first
#define S second
#define getlast(s) (*s.rbegin())
#define debg cout << "OK\n"

const ld PI = 3.1415926535;
const int N = 3e5+5;
const int M = 50 + 1;
const int mod = 1e9+7;
const int infi = 1e15;
const ll infl = LLONG_MAX;
const int P = 31;

int mult(int a, int b) {
    return a * 1LL * b % mod;
}

int sum(int a, int b) { 
    if (a + b < 0)
        return a + b + mod;
    if (a + b >= mod)
        return a + b - mod;
    return a + b;
}

ll binpow(ll a, ll n) {
    if (n == 0)
        return 1;
    if (n % 2 == 1) {
        return binpow(a, n - 1) * a % mod;
    } else {
        ll b = binpow(a, n / 2);
        return b * b % mod;
    }
}

int n, m, a[N], ia[N], sm[20], udp[(1 << 20)], ddp[21][(1 << 20)], C[21][21];

void solve(){
    cin >> n >> m;
    for(int i = 1; i <= n; i++){
        int x = 0;
        for(int j = 0; j < m; j++){
            int c;
            cin >> c;
            sm[j] += c;
            x += (c << j);
        }
        a[i] = x;
        ia[i] = (1 << m) - 1 - x;
        udp[ia[i]] = 1;
    }
    for(int i = 0; i < m; i++){
        for(int mask = (1 << m) - 1; mask >= 0; mask--){
            if((mask & (1 << i)) == 0)
                udp[mask] += udp[mask ^ (1 << i)];
        }
    }
    for(int mask = 0; mask < (1 << m); mask++){
        ddp[__builtin_popcount(mask)][mask] = udp[mask];
    }
    for(int k = 0; k <= m; k++){
        for(int i = 0; i < m; i++){
            for(int mask = 0; mask < (1 << m); mask++)
                if(mask & (1 << i))
                    ddp[k][mask] += ddp[k][mask ^ (1 << i)];
        }
    }
    for(int i = 1; i <= n; i++){
        int nd = 0, ans = 0;
        for(int b = 0; b < m; b++){
            int c = (a[i] >> b) & 1;
            if(sm[b] - c == n / 2){
                nd += (1 << b);
            }
            if(sm[b] - c > n / 2)
                ans++;
        }
        int mx = 0;
        int x = ia[i] & nd;
        for(int k = 0; k <= m; k++){
            if(ddp[k][nd] - C[__builtin_popcount(x)][k] > 0){
                mx = max(mx, k);
            }
        }
        cout << ans + mx << '\n';
    }
}   

signed main() {
    mispertion;
    for(int i = 0; i <= 20; i++){
        for(int j = 0; j <= i; j++){
            int res = 1;
            for(int k = 1; k <= i; k++)
                res *= k;
            for(int k = 1; k <= j; k++)
                res /= k;
            for(int k = 1; k <= i - j; k++)
                res /= k;
            C[i][j] = res;
        }
    }
    int t = 1;
    //cin >> t;
    while(t--){
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 8
Accepted
time: 339ms
memory: 187648kb

input:

38 20
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1
0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
1 1 1 1 1 1 1 ...

output:

18
18
1
1
18
18
18
1
1
18
18
18
18
18
18
18
1
18
18
1
18
1
1
18
1
1
18
18
1
1
1
18
1
1
1
18
1
1

result:

ok 38 numbers

Test #2:

score: 8
Accepted
time: 330ms
memory: 187276kb

input:

300 20
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 1 1 1 1...

output:

20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
20
...

result:

ok 300 numbers

Test #3:

score: 8
Accepted
time: 333ms
memory: 187288kb

input:

5 20
0 0 0 1 1 0 0 0 1 1 0 1 1 0 0 1 1 1 0 0
1 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 1 0 0 1
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 1
0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1
0 1 0 0 1 1 1 1 0 0 0 1 1 1 0 0 1 0 1 1

output:

7
9
9
8
9

result:

ok 5 number(s): "7 9 9 8 9"

Test #4:

score: 8
Accepted
time: 352ms
memory: 187092kb

input:

20 20
1 0 1 1 0 1 1 1 1 1 0 0 0 1 1 0 1 1 0 1
1 0 1 0 0 1 0 0 1 1 1 0 1 1 0 0 1 0 1 0
1 0 0 0 1 0 0 0 1 1 0 1 1 0 0 0 0 0 1 1
0 1 0 1 1 1 1 1 0 1 0 1 0 1 0 0 1 1 0 0
0 0 0 0 1 0 0 0 1 0 1 1 0 1 1 0 0 0 1 1
1 0 0 0 0 0 1 0 1 1 0 1 1 0 0 1 1 1 1 1
0 1 1 1 1 0 1 0 0 0 0 0 1 1 0 1 1 0 1 0
0 0 0 1 0 0 0 ...

output:

12
13
12
13
12
13
12
13
11
13
12
12
11
11
12
13
12
13
13
11

result:

ok 20 numbers

Test #5:

score: 8
Accepted
time: 329ms
memory: 186764kb

input:

300 20
1 1 0 0 1 1 1 0 1 0 1 1 1 0 1 0 0 0 1 0
0 0 1 0 1 0 0 0 1 1 0 1 1 1 1 0 1 1 0 1
0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 1 0 1 1 1
1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 1 1 0 0 1
0 1 0 1 0 1 0 1 0 1 1 1 1 0 0 1 0 0 1 1
0 1 1 0 0 1 0 1 0 0 0 0 1 0 0 1 0 1 1 0
0 0 0 1 0 1 1 1 1 0 0 1 0 0 1 1 0 1 0 1
1 1 0 0 1 0 1...

output:

10
11
11
10
11
11
11
10
11
11
11
10
10
10
10
10
11
11
11
11
10
10
10
10
10
11
11
11
10
11
10
10
10
10
10
10
11
11
10
11
10
11
11
10
10
11
11
11
11
10
10
11
10
11
11
10
10
11
11
10
10
10
10
11
10
10
10
11
11
10
11
10
11
11
11
10
10
11
11
10
10
10
10
10
11
11
10
11
10
11
10
10
11
10
10
11
10
10
11
10
...

result:

ok 300 numbers

Test #6:

score: 8
Accepted
time: 336ms
memory: 187880kb

input:

5 20
1 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 0 1 1 0
1 0 1 0 1 0 1 0 1 1 0 0 1 1 1 1 0 0 1 1
0 1 1 1 0 0 0 1 0 0 1 0 1 0 1 1 1 0 0 0
0 0 0 0 1 1 0 1 0 0 1 0 0 1 1 0 0 1 0 0
0 0 0 0 0 1 1 0 0 1 0 1 1 0 0 0 1 1 1 1

output:

10
9
11
11
11

result:

ok 5 number(s): "10 9 11 11 11"

Test #7:

score: 8
Accepted
time: 357ms
memory: 186956kb

input:

20 20
0 0 1 1 0 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1
0 0 0 1 0 0 1 0 1 0 1 0 1 1 1 1 0 0 0 0
1 1 1 1 0 1 0 0 0 0 0 0 0 0 1 1 1 0 1 1
1 1 0 0 0 1 1 1 0 1 0 1 0 0 0 1 0 1 1 1
1 0 1 0 0 0 1 0 1 0 0 1 1 1 1 1 0 1 1 1
0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 0 1 1 1 1
0 0 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 1 1 0
1 1 0 0 1 1 1 ...

output:

11
11
11
11
10
12
12
11
12
9
11
12
11
13
10
10
13
12
11
11

result:

ok 20 numbers

Test #8:

score: 8
Accepted
time: 340ms
memory: 186996kb

input:

300 20
1 1 0 0 1 1 1 1 0 0 0 1 1 0 1 1 0 0 1 0
0 0 1 0 1 1 1 0 1 0 1 1 1 0 1 1 1 1 0 0
0 0 1 0 1 1 1 0 1 0 1 0 0 0 0 1 0 1 0 0
0 1 1 1 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 1
0 0 1 0 1 1 0 1 1 0 0 0 0 0 0 1 0 0 1 1
0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0
0 0 0 0 1 1 0 0 1 0 0 1 1 1 1 1 1 1 0 0
0 0 0 0 1 0 1...

output:

15
14
15
15
16
16
16
17
15
14
15
17
16
15
14
16
13
16
16
14
16
14
16
15
16
15
15
13
17
14
15
15
14
18
14
17
14
16
16
16
13
17
18
16
16
16
16
13
16
15
18
15
17
17
15
14
15
14
17
13
15
16
14
17
16
14
16
15
12
16
17
16
16
14
15
13
15
14
17
12
15
13
15
12
12
17
14
19
16
17
13
16
12
16
13
16
17
14
15
18
...

result:

ok 300 numbers

Test #9:

score: 0
Wrong Answer
time: 2ms
memory: 11832kb

input:

3 1
0
1
0

output:

0
0
0

result:

wrong answer 1st numbers differ - expected: '1', found: '0'

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Wrong Answer

Test #53:

score: 6
Accepted
time: 23ms
memory: 16404kb

input:

300000 2
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1...

output:

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
...

result:

ok 300000 numbers

Test #54:

score: 6
Accepted
time: 25ms
memory: 14948kb

input:

300000 2
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

ok 300000 numbers

Test #55:

score: 6
Accepted
time: 20ms
memory: 13656kb

input:

300000 1
0
1
0
1
0
1
0
1
1
0
0
1
1
1
0
1
0
1
1
0
1
1
1
0
1
1
1
0
1
0
0
1
1
0
0
1
0
1
1
1
0
0
0
1
1
1
0
0
0
1
0
0
1
1
0
1
1
0
1
0
0
1
1
0
0
1
1
0
1
0
0
1
0
1
1
0
0
0
0
1
1
0
0
1
1
0
1
0
0
0
1
0
0
1
0
1
1
0
1
1
0
1
0
0
1
1
1
1
0
0
0
0
0
1
0
1
0
1
1
0
0
1
1
1
1
1
0
0
0
0
0
1
1
1
1
0
0
0
1
1
1
0
1
1
1
1...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

ok 300000 numbers

Test #56:

score: 6
Accepted
time: 34ms
memory: 14640kb

input:

300000 2
1 0
1 0
0 0
0 1
0 1
0 1
1 0
1 1
1 0
0 1
1 0
0 0
0 1
1 1
0 0
1 0
0 0
0 0
0 0
0 0
1 1
0 1
1 1
1 0
0 0
1 1
0 1
0 0
0 1
1 0
1 1
1 0
1 1
1 0
0 1
0 1
0 1
0 0
0 0
0 1
1 0
1 0
0 0
1 1
1 0
1 1
1 0
1 0
0 0
1 1
1 1
1 0
0 1
1 1
0 1
1 1
0 0
1 0
1 0
1 1
1 0
1 0
0 0
1 1
0 1
1 1
0 0
1 1
0 1
1 0
0 0
0 1
0 0...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

ok 300000 numbers

Test #57:

score: 0
Wrong Answer
time: 26ms
memory: 13096kb

input:

300000 1
1
0
1
1
1
0
1
1
1
1
0
0
1
0
1
0
0
0
1
1
1
1
0
0
0
1
1
0
0
0
0
0
1
1
0
1
0
1
1
1
0
0
1
0
1
0
0
1
1
0
1
1
1
1
1
0
0
0
0
0
0
0
0
0
1
0
0
1
1
1
1
0
0
1
0
0
1
1
0
0
0
1
0
0
0
0
1
1
0
0
0
0
0
0
1
0
0
0
1
1
1
1
1
1
0
1
0
0
1
1
1
0
0
1
1
0
0
1
1
0
1
0
0
0
1
1
1
0
1
0
1
1
1
1
1
1
0
1
0
1
1
1
1
1
0
1...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

wrong answer 2nd numbers differ - expected: '1', found: '0'

Subtask #4:

score: 0
Skipped

Dependency #3:

0%

Subtask #5:

score: 0
Skipped

Dependency #4:

0%

Subtask #6:

score: 0
Skipped

Dependency #5:

0%

Subtask #7:

score: 0
Skipped

Dependency #1:

0%