Submission #1086993

#TimeUsernameProblemLanguageResultExecution timeMemory
1086993BananabreadCouncil (JOI23_council)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #define ll long long #define ntr "\n" #define mod (ll)(1e9+7) #define taskname "temp" #define frep freopen("01-05.inp","r",stdin); //freopen(taskname".out","w",stdout); using namespace std; ll pref[100]; ll arr[300001]; ll ans[300001]; ll cnt[1<<20]; ll best[1<<20]; ll n,m; ll one,two,zero; ll super[1<<20][20]; bool ison(ll x,ll i){ return (x>>i)&1; } ll flip(ll x){ return ((1<<m)-1)&~x; } void sub2(){ for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++){ ans[i]=max(ans[i],__builtin_popcount((two | (one & ~arr[i]) | (~arr[j] &(one | (zero & ~arr[i])))))); ans[j]=max(ans[j],__builtin_popcount((two | (one & ~arr[j]) | (~arr[i] &(one | (zero & ~arr[j])))))); } } for(int i=1;i<=n;i++){ cout<<ans[i]<<ntr; } } ll cntc=0; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); //frep; cin>>n>>m; for(int i=1;i<=n;i++){ for(int j=0;j<m;j++){ ll x; cin>>x; pref[j]+=x; arr[i]+=(x<<j); } cnt[arr[i]]++; } for(int i=0;i<m;i++){ if(pref[i]>=n/2+2) two|=(1<<i); if(pref[i]==n/2+1) one|=(1<<i); if(pref[i]==n/2) zero|=(1<<i); } if(n<=3000){ sub2(); return 0; } for(int i=(1<<m);i>=0;i--){ super[i][0]=cnt[i]; if(i&1==0) super[i][0]+=cnt[i^1]; for(int j=1;j<20;j++){ super[i][j]+=super[i][j-1]; if(i&(1<<j)==0) super[i][j]+=super[i^(1<<j)][j-1]; } } for(int i=0;i<(1<<m);i++){ cout<<super[i][19]<<' '; } //cout<<ntr; for(int mask=0;mask<(1<<m);mask++){ if(!cnt[mask]) continue; cnt[mask]--; ll ONE=(two | ( one & ~mask )); ll ZERO=( one | ( zero & ~mask )); // cout<<ONE<<' '<<ZERO<<ntr; ll optmask=0; for(int i=0;i<m;i++){ if(ONE&(1<<i)) continue; if(ZERO&(1<<i)) optmask|=(1<<i); } // cout<<optmask<<ntr; for(int nextmask=optmask;nextmask;nextmask=(nextmask-1)&optmask){ if(super[nextmask][19]>((nextmask&mask)==0)) best[mask]=max(best[mask],(ll)__builtin_popcount(ONE|(ZERO&nextmask))); } // cout<<ntr<<ntr; best[mask]=max(best[mask],(ll)__builtin_popcount(ONE)); cnt[mask]++; } for(int i=1;i<=n;i++){ cout<<best[arr[i]]<<ntr; } }

Compilation message (stderr)

council.cpp: In function 'void sub2()':
council.cpp:25:112: error: no matching function for call to 'max(long long int&, int)'
   25 |             ans[i]=max(ans[i],__builtin_popcount((two | (one & ~arr[i]) | (~arr[j] &(one | (zero & ~arr[i]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
council.cpp:25:112: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   25 |             ans[i]=max(ans[i],__builtin_popcount((two | (one & ~arr[i]) | (~arr[j] &(one | (zero & ~arr[i]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
council.cpp:25:112: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   25 |             ans[i]=max(ans[i],__builtin_popcount((two | (one & ~arr[i]) | (~arr[j] &(one | (zero & ~arr[i]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3480:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3480 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3480:5: note:   template argument deduction/substitution failed:
council.cpp:25:112: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   25 |             ans[i]=max(ans[i],__builtin_popcount((two | (one & ~arr[i]) | (~arr[j] &(one | (zero & ~arr[i]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3486:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3486 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3486:5: note:   template argument deduction/substitution failed:
council.cpp:25:112: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   25 |             ans[i]=max(ans[i],__builtin_popcount((two | (one & ~arr[i]) | (~arr[j] &(one | (zero & ~arr[i]))))));
      |                                                                                                                ^
council.cpp:26:112: error: no matching function for call to 'max(long long int&, int)'
   26 |             ans[j]=max(ans[j],__builtin_popcount((two | (one & ~arr[j]) | (~arr[i] &(one | (zero & ~arr[j]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
council.cpp:26:112: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   26 |             ans[j]=max(ans[j],__builtin_popcount((two | (one & ~arr[j]) | (~arr[i] &(one | (zero & ~arr[j]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
council.cpp:26:112: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   26 |             ans[j]=max(ans[j],__builtin_popcount((two | (one & ~arr[j]) | (~arr[i] &(one | (zero & ~arr[j]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3480:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3480 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3480:5: note:   template argument deduction/substitution failed:
council.cpp:26:112: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   26 |             ans[j]=max(ans[j],__builtin_popcount((two | (one & ~arr[j]) | (~arr[i] &(one | (zero & ~arr[j]))))));
      |                                                                                                                ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from council.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3486:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3486 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3486:5: note:   template argument deduction/substitution failed:
council.cpp:26:112: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   26 |             ans[j]=max(ans[j],__builtin_popcount((two | (one & ~arr[j]) | (~arr[i] &(one | (zero & ~arr[j]))))));
      |                                                                                                                ^
council.cpp: In function 'int main()':
council.cpp:58:15: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   58 |         if(i&1==0) super[i][0]+=cnt[i^1];
      |              ~^~~
council.cpp:61:24: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   61 |             if(i&(1<<j)==0) super[i][j]+=super[i^(1<<j)][j-1];
      |                  ~~~~~~^~~