QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#54361 | #1773. Breaking Bars | KING_UT | ML | 390ms | 37060kb | C++20 | 3.5kb | 2022-10-07 23:41:51 | 2022-10-07 23:41:54 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
//#define int ll
using uint=unsigned;
using ull=unsigned ll;
#define gnr(i,a,b)for(int i=int(b)-1;i>=int(a);i--)
#define per(i,b) gnr(i,0,b)
#define rng(i, a, b) for(int i=(int)a;i<(int)b;i++)
#define rep(i,n) rng(i,0,n)
template<class t>using vc=vector<t>;
template<class t>using vvc=vc<vc<t>>;
using vi=vc<int>;
#define a first
#define b second
#define mp make_pair
using vi=vc<int>;
#define pb push_back
#define eb emplace_back
template<class t,class u>bool chmax(t &a,u b){
if(a <b){a=b;return true;}
else return false;
}
template<class t,class u>bool chmin(t &a,u b){
if(a>b){a=b;return true;}
else return false;
}
#define bg begin()
#define ed end()
#define all(x) x.bg,x.ed
#define si(x) int(x.size())
template<class t>void mkuni(vc<t>&vs){
sort(all(vs));
vs.erase(unique(all(vs)),vs.ed);
}
template<class t>int lwb(const vc<t>&vs,t a){
return lower_bound(all(vs),a)-vs.bg;
}
bool inc(int a,int b,int c){return a<=b&&b<=c;}
const int inf=INT_MAX/2-100;
using pi=pair<int,int>;
int getid(int h,int w){
if(h<w)swap(h,w);
return h*(h-1)/2+w-1;
}
const int smax=6;
const int S=smax*(smax+1)/2;
/*
vi ls[S];
void slv(){
rng(h,1,smax+1)rng(w,1,h+1){
int idx=getid(h,w);
ls[idx].pb(1<<idx);
//vert
rng(i,1,h){
int x=getid(i,w);
int y=getid(h-i,w);
for(auto u:ls[x])for(auto v:ls[y])
ls[idx].pb(u^v);
}
//hori
rng(i,1,w){
int x=getid(h,i);
int y=getid(h,w-i);
for(auto u:ls[x])for(auto v:ls[y])
ls[idx].pb(u^v);
}
mkuni(ls[idx]);
cerr<<h<<" "<<w<<" "<<si(ls[idx])<<endl;
}
}
*/
map<int,int> ls[S];
int readid(){
string s;cin>>s;
int res=getid(s[0]-'0',s[2]-'0');
//cerr<<s<<" "<<res<<endl;
return res;
}
void slv(){
rng(h,1,smax+1)rng(w,1,h+1){
int idx=getid(h,w);
ls[idx][1<<idx]=0;
//vert
rng(i,1,h){
int x=getid(i,w);
int y=getid(h-i,w);
for(auto u:ls[x])for(auto v:ls[y])
if(ls[idx].find(u.a^v.a) != ls[idx].end()){
chmin(ls[idx][(u.a^v.a)], u.b+v.b+1);
}
else ls[idx][u.a^v.a]=u.b+v.b+1;
}
//hori
rng(i,1,w){
int x=getid(h,i);
int y=getid(h,w-i);
for(auto u:ls[x])for(auto v:ls[y])
if(ls[idx].find(u.a^v.a) != ls[idx].end()){
chmin(ls[idx][(u.a^v.a)], u.b+v.b+1);
}
else ls[idx][u.a^v.a]=u.b+v.b+1;
}
//mkuni(ls[idx]);
//cerr<<h<<" "<<w<<" "<<si(ls[idx])<<endl;
}
int n,t;cin>>n>>t;
vi cnt(S);
rep(i,n)cnt[readid()]++;
vc<bool> ok(1<<S);
{
vi f(S);
rng(h,1,smax+1)rng(w,1,h+1)f[getid(h,w)]=h*w;
int tot=0;
rep(i,S)tot+=f[i]*cnt[i];
int cur=0;
rep(bit,1<<S){
//if(bit==1048578)cerr<<cur<<endl;
if(tot-cur>=2*t)ok[bit]=true;
rep(i,S)if(bit&1<<i){
cur-=f[i];
}else{
cur+=f[i];
break;
}
}
}
int ans=inf;
int ini=0;
rep(i,S)if(cnt[i]%2)ini+=1<<i;
//cerr<<ini<<" "<<ok[ini]<<endl;
vc<pi> dp,nx;
if(ok[ini])ans=0;
else dp.eb(ini,0);
per(i,S){
per(_,cnt[i]){
nx.clear();
auto reach=[&](int bit,int v){
if(ok[bit]){
chmin(ans,v);
}else if(v+1<ans){
nx.eb(bit,v);
}
};
for(auto [key,val]:dp){
for(auto [bit,cost]:ls[i]){
reach(key^bit^(1<<i),val+cost);
}
}
sort(all(nx));
dp.clear();
for(auto [key,val]:nx){
if(val+1<ans){
if(dp.empty()||dp.back().a!=key)dp.eb(key,val);
}
}
}
{
nx.clear();
for(auto [key,val]:dp){
assert(!ok[key]);
if(ok[(key>>i)<<i])nx.eb(key,val);
}
dp.swap(nx);
}
}
cout<<ans<<endl;
}
signed main(){
cin.tie(0);
ios::sync_with_stdio(false);
cout<<fixed<<setprecision(10);
slv();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 390ms
memory: 37060kb
input:
16 118 5x6 3x5 4x5 6x3 6x1 1x1 4x5 4x5 2x3 1x2 5x3 5x3 6x2 3x6 5x6 4x2
output:
4
result:
ok single line: '4'
Test #2:
score: 0
Accepted
time: 29ms
memory: 3864kb
input:
6 30 2x3 3x3 1x5 2x5 3x5 3x5
output:
2
result:
ok single line: '2'
Test #3:
score: 0
Accepted
time: 28ms
memory: 3852kb
input:
3 2 1x1 1x1 1x2
output:
1
result:
ok single line: '1'
Test #4:
score: 0
Accepted
time: 28ms
memory: 3856kb
input:
4 25 2x3 3x3 2x5 5x5
output:
2
result:
ok single line: '2'
Test #5:
score: 0
Accepted
time: 23ms
memory: 3856kb
input:
5 10 1x1 1x1 1x1 1x1 4x4
output:
1
result:
ok single line: '1'
Test #6:
score: 0
Accepted
time: 27ms
memory: 3932kb
input:
6 34 1x1 1x2 2x3 3x3 5x5 5x5
output:
2
result:
ok single line: '2'
Test #7:
score: 0
Accepted
time: 32ms
memory: 5172kb
input:
15 70 1x1 1x2 1x3 1x4 1x5 2x2 2x3 2x4 2x5 3x3 3x4 3x5 4x4 4x5 5x5
output:
7
result:
ok single line: '7'
Test #8:
score: 0
Accepted
time: 27ms
memory: 3892kb
input:
11 40 1x1 1x2 1x3 2x3 2x4 4x5 2x2 2x2 1x4 2x4 4x5
output:
3
result:
ok single line: '3'
Test #9:
score: 0
Accepted
time: 23ms
memory: 3996kb
input:
20 74 4x3 5x1 4x2 3x3 1x2 2x1 4x2 1x5 1x1 1x4 1x1 5x5 1x4 4x5 3x2 3x5 1x2 3x4 1x1 2x3
output:
6
result:
ok single line: '6'
Test #10:
score: 0
Accepted
time: 163ms
memory: 12808kb
input:
20 104 4x2 2x3 4x5 5x1 1x3 4x3 1x2 1x1 5x2 5x4 5x5 4x1 5x5 3x5 4x2 3x1 3x1 5x4 2x1 4x4
output:
6
result:
ok single line: '6'
Test #11:
score: 0
Accepted
time: 28ms
memory: 3960kb
input:
13 44 5x4 3x2 3x2 4x1 4x4 1x2 1x5 1x2 1x1 3x5 1x2 1x3 3x2
output:
5
result:
ok single line: '5'
Test #12:
score: 0
Accepted
time: 27ms
memory: 3824kb
input:
5 21 1x3 1x2 5x4 4x4 1x1
output:
3
result:
ok single line: '3'
Test #13:
score: 0
Accepted
time: 25ms
memory: 4104kb
input:
18 77 5x4 4x2 5x5 1x4 3x1 4x3 2x3 1x1 3x4 5x2 5x3 2x2 2x1 2x1 1x2 5x3 3x3 1x4
output:
6
result:
ok single line: '6'
Test #14:
score: 0
Accepted
time: 27ms
memory: 3908kb
input:
9 30 5x2 5x3 1x4 1x4 2x3 1x2 3x3 2x3 4x1
output:
5
result:
ok single line: '5'
Test #15:
score: 0
Accepted
time: 23ms
memory: 3956kb
input:
8 37 2x4 1x3 5x4 5x5 2x4 1x4 1x2 1x4
output:
2
result:
ok single line: '2'
Test #16:
score: 0
Accepted
time: 72ms
memory: 7796kb
input:
19 103 1x5 5x2 2x2 5x4 1x5 1x1 5x5 2x2 2x5 5x4 3x4 3x2 4x4 5x4 5x3 2x2 2x4 4x3 3x3
output:
7
result:
ok single line: '7'
Test #17:
score: 0
Accepted
time: 33ms
memory: 5080kb
input:
19 75 2x1 1x1 5x5 2x4 1x3 2x3 2x2 2x3 4x5 4x3 3x1 4x1 4x2 4x4 5x1 1x4 1x5 5x3 3x1
output:
7
result:
ok single line: '7'
Test #18:
score: 0
Accepted
time: 27ms
memory: 3864kb
input:
20 81 2x3 2x5 5x3 2x1 3x1 5x2 4x5 2x1 1x5 5x2 2x5 1x5 3x2 1x5 1x2 4x2 4x2 5x4 3x2 3x3
output:
2
result:
ok single line: '2'
Test #19:
score: -100
Memory Limit Exceeded
input:
47 297 3x5 3x2 1x5 5x6 5x5 5x5 4x2 5x4 4x1 6x2 6x6 5x3 1x2 2x6 6x2 3x3 2x2 2x2 1x4 2x5 5x3 4x4 6x3 3x6 5x4 3x6 3x1 6x1 3x1 1x2 3x4 1x6 6x6 5x3 1x1 5x5 2x1 1x4 5x1 5x6 2x1 4x6 2x2 6x6 2x3 6x1 3x1