#include<stdio.h>
#include<string.h>
#define N 300000
#define M 20
int a[N], n, m, cc[M], f[1<<M][2], g[1<<M][2];
int count(int x) { return x ? 1 + count(x&x-1) : 0; }
int super(int x) { return x | x + 1; }
int sub(int x) { return x & x - 1; }
void put(int i, int v)
{
if(v>count(i))
v=count(i);
if (v>f[i][0])
f[i][1]=f[i][0],f[i][0]=v;
else if(v>f[i][1])
f[i][1]=v;
}
void put_(int i, int v)
{
if (v > f[i][0])
f[i][1]=f[i][0],f[i][0]=v;
else if(v>f[i][1])
f[i][1]=v;
}
int main()
{
memset(f,-1,sizeof f);
memset(g,-1,sizeof g);
scanf("%d%d",&n,&m);
for(int i=0;i<n;++i)
{
for(int x,j=0;j<m;++j)
scanf("%d",&x),a[i]|=x<<j, cc[j]+=x;
int b=((1<<m)-1)&~a[i];
put(b, count(b));
printf(" Putting %d at %d\n",count(b),b);
}
/* need to find max count(b[i] & S)
* SOS dp :question:
*
*/
for(int i=0;i<m;++i)
for(int j=0;j<(1<<m);++j)
if(1==((j>>i)&1))
put(j^(1<<i), f[j][1]), put(j^(1<<i), f[j][0]);
for(int i=0;i<m;++i)
for(int j=0;j<(1<<m);++j)
if(0==(j&(1<<i)))
put_(j^(1<<i), f[j][1]), put_(j^(1<<i), f[i][0]);
for(int i=0;i<n;++i)
{
int S=0,ans=0;
for(int j=0;j<m;++j)
{
int c=cc[j]-((a[i]>>j)&1);
if (c>n/2)
++ans;
else if(c==n/2)
S|=1<<j;
}
int b=((1<<m)-1)&~a[i];
if (count(S&b) == f[S][0])
ans += f[S][1];
else
ans += f[S][0];
printf("%d\n", ans);
}
}
Compilation message
council.c: In function 'count':
council.c:9:44: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
9 | int count(int x) { return x ? 1 + count(x&x-1) : 0; }
| ~^~
council.c: In function 'super':
council.c:10:33: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
10 | int super(int x) { return x | x + 1; }
| ~~^~~
council.c: In function 'sub':
council.c:11:31: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
11 | int sub(int x) { return x & x - 1; }
| ~~^~~
council.c: In function 'main':
council.c:35:5: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
35 | scanf("%d%d",&n,&m);
| ^~~~~~~~~~~~~~~~~~~
council.c:39:13: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
39 | scanf("%d",&x),a[i]|=x<<j, cc[j]+=x;
| ^~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
17756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |