#include<string> #include<stdio.h> #include<iostream> #include<set> #include<vector> #include<algorithm> #include<queue> #include<bitset> #include<list> #define ll long long #define pb push_back #define sc scanf #define pr printf #define f first #define s second #define mp make_pair #define lb lower_bound using namespace std; struct e{ int from; int ve; e *r; ll m; ll fl=0; bool z=0; e(int x,int y,ll ma,e *ra=NULL):from(x),ve(y),m(ma),r(ra){}; }; list<e>t[401]; pair<pair<int,int>,ll>t2[102]; set<int>se; pair<int,int>v2[210]; ll w; ll dfs(list<list<e>::iterator> *tt,int *odw,int zer,int v,ll mi){ if(v==400)return mi; odw[v]=zer; ll p=-1LL; for(auto it=tt[v].begin();it!=tt[v].end();){ auto it2=(*it); if(((it2->m)-(it2->fl))==0LL){ if((it2->r)!=NULL){ ((it2->r)->m)=(it2->m); ((it2->r)->z)=1; t[it2->from].erase(it2); it=tt[v].erase(it); } else{ if(it2->z)t[it2->from].erase(it2); it=tt[v].erase(it); } continue; } if(odw[it2->ve]<zer){ p=dfs(tt,odw,zer,it2->ve,min(mi,((it2->m)-(it2->fl)))); if(p>0){ (it2->fl)+=p; if(((it2->m)-(it2->fl))==0LL){ if((it2->r)!=NULL){ ((it2->r)->m)=(it2->m); ((it2->r)->z)=1; t[it2->from].erase(it2); it=tt[v].erase(it); } else{ if(it2->z)t[it2->from].erase(it2); it=tt[v].erase(it); } } else{ if((it2->r)!=NULL){ ((it2->r)->m)=(it2->fl); } } return p; } } it++; } return p; } ll dinic(){ int lay[401]; lay[0]=0; for(int i=1;i<=400;i++)lay[i]=-1; queue<int>q; q.push(0); while(!q.empty()){ int v=q.front(); q.pop(); for(auto it=t[v].begin();it!=t[v].end();it++){ if((it->m)==0LL)continue; if(lay[it->ve]==-1){ lay[it->ve]=lay[v]+1; q.push(it->ve); } } } if(lay[400]==-1)return (ll)(-1); list<list<e>::iterator>tt[401]; for(int i=0;i<=400;i++){ if(lay[i]==-1)continue; for(auto it=t[i].begin();it!=t[i].end();it++){ if(it->m==0LL)continue; if(lay[it->ve]-lay[i]==1)tt[i].pb(it); } } int odw[401]; for(int i=0;i<=400;i++)odw[i]=0; int zer=1; ll p; ll wt=0; while(1){ p=dfs(tt,odw,zer,0,(1LL)<<30); if(p>0){ wt+=p; zer++; } else{ return wt; } } /*vector<int>st; st.pb(0); while(!st.empty()){ int v=st.back(); for(auto it=tt[v].begin();it!=tt[v].end();it++){ } }*/ } int main (){ int n,p1,p2; ll m,p3,wo=0; sc("%d%lld",&n,&m); for(int i=1;i<=n;i++){ sc("%d%d%lld",&p1,&p2,&p3); t2[i].f.f=p1; t2[i].f.s=p2; t2[i].s=p3; wo+=p3; se.insert(p1); se.insert(p2); } for(int i=1;i<=n;i++){ t[i].pb(e(i,0,0LL)); t[0].pb(e(0,i,t2[i].s,&t[i].back())); } auto it2=se.begin(); it2++; int k=1; for(auto it=se.begin();it2!=se.end();it++){ v2[k]=mp(*it,(*it2)-1); t[400].pb(e(400,n+k,0LL)); t[n+k].pb(e(n+k,400,((ll)(v2[k].s-v2[k].f+1))*m,&t[400].back())); k++; it2++; } for(int i=1;i<=n;i++){ for(int j=1;j<se.size();j++){ if(t2[i].f.s<=v2[j].s){ break; } t[n+j].pb(e(n+j,i,0LL)); t[i].pb(e(i,n+j,min(t2[i].s,((ll)(v2[j].s-v2[j].f+1))),&t[n+j].back()));//kontynuowaæ } } while(1){ ll p=dinic(); if(p>0)w+=p; else break; } if(w==wo)pr("TAK"); else pr("NIE"); return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | #include<string> #include<stdio.h> #include<iostream> #include<set> #include<vector> #include<algorithm> #include<queue> #include<bitset> #include<list> #define ll long long #define pb push_back #define sc scanf #define pr printf #define f first #define s second #define mp make_pair #define lb lower_bound using namespace std; struct e{ int from; int ve; e *r; ll m; ll fl=0; bool z=0; e(int x,int y,ll ma,e *ra=NULL):from(x),ve(y),m(ma),r(ra){}; }; list<e>t[401]; pair<pair<int,int>,ll>t2[102]; set<int>se; pair<int,int>v2[210]; ll w; ll dfs(list<list<e>::iterator> *tt,int *odw,int zer,int v,ll mi){ if(v==400)return mi; odw[v]=zer; ll p=-1LL; for(auto it=tt[v].begin();it!=tt[v].end();){ auto it2=(*it); if(((it2->m)-(it2->fl))==0LL){ if((it2->r)!=NULL){ ((it2->r)->m)=(it2->m); ((it2->r)->z)=1; t[it2->from].erase(it2); it=tt[v].erase(it); } else{ if(it2->z)t[it2->from].erase(it2); it=tt[v].erase(it); } continue; } if(odw[it2->ve]<zer){ p=dfs(tt,odw,zer,it2->ve,min(mi,((it2->m)-(it2->fl)))); if(p>0){ (it2->fl)+=p; if(((it2->m)-(it2->fl))==0LL){ if((it2->r)!=NULL){ ((it2->r)->m)=(it2->m); ((it2->r)->z)=1; t[it2->from].erase(it2); it=tt[v].erase(it); } else{ if(it2->z)t[it2->from].erase(it2); it=tt[v].erase(it); } } else{ if((it2->r)!=NULL){ ((it2->r)->m)=(it2->fl); } } return p; } } it++; } return p; } ll dinic(){ int lay[401]; lay[0]=0; for(int i=1;i<=400;i++)lay[i]=-1; queue<int>q; q.push(0); while(!q.empty()){ int v=q.front(); q.pop(); for(auto it=t[v].begin();it!=t[v].end();it++){ if((it->m)==0LL)continue; if(lay[it->ve]==-1){ lay[it->ve]=lay[v]+1; q.push(it->ve); } } } if(lay[400]==-1)return (ll)(-1); list<list<e>::iterator>tt[401]; for(int i=0;i<=400;i++){ if(lay[i]==-1)continue; for(auto it=t[i].begin();it!=t[i].end();it++){ if(it->m==0LL)continue; if(lay[it->ve]-lay[i]==1)tt[i].pb(it); } } int odw[401]; for(int i=0;i<=400;i++)odw[i]=0; int zer=1; ll p; ll wt=0; while(1){ p=dfs(tt,odw,zer,0,(1LL)<<30); if(p>0){ wt+=p; zer++; } else{ return wt; } } /*vector<int>st; st.pb(0); while(!st.empty()){ int v=st.back(); for(auto it=tt[v].begin();it!=tt[v].end();it++){ } }*/ } int main (){ int n,p1,p2; ll m,p3,wo=0; sc("%d%lld",&n,&m); for(int i=1;i<=n;i++){ sc("%d%d%lld",&p1,&p2,&p3); t2[i].f.f=p1; t2[i].f.s=p2; t2[i].s=p3; wo+=p3; se.insert(p1); se.insert(p2); } for(int i=1;i<=n;i++){ t[i].pb(e(i,0,0LL)); t[0].pb(e(0,i,t2[i].s,&t[i].back())); } auto it2=se.begin(); it2++; int k=1; for(auto it=se.begin();it2!=se.end();it++){ v2[k]=mp(*it,(*it2)-1); t[400].pb(e(400,n+k,0LL)); t[n+k].pb(e(n+k,400,((ll)(v2[k].s-v2[k].f+1))*m,&t[400].back())); k++; it2++; } for(int i=1;i<=n;i++){ for(int j=1;j<se.size();j++){ if(t2[i].f.s<=v2[j].s){ break; } t[n+j].pb(e(n+j,i,0LL)); t[i].pb(e(i,n+j,min(t2[i].s,((ll)(v2[j].s-v2[j].f+1))),&t[n+j].back()));//kontynuowaæ } } while(1){ ll p=dinic(); if(p>0)w+=p; else break; } if(w==wo)pr("TAK"); else pr("NIE"); return 0; } |