#include <iostream> #include <fstream> #include <algorithm> #include <vector> using namespace std; struct DST{ int distr[11]; void oblicz(const DST* wej1, const DST* wej2, int modyf){ for(int j=0; j<=10; j++) if(j-modyf<0) distr[j]=0; else{ distr[j]=0; if(wej1!=nullptr) distr[j]+=wej1->distr[j-modyf]; if(wej2!=nullptr) distr[j]+=wej2->distr[j-modyf]; } } void oblicz(int wej){ for(int j=0; j<=10; j++) distr[j]=(j==wej); } DST(){ } DST(int wej){ oblicz(wej); } DST(const DST* wej1, const DST* wej2, int modyf){ oblicz(wej1, wej2, modyf); } }; struct DP{ int rozm; int * a; int * mks; DST * wyn; /* void polacz(int* wej1, int* wej2, int modyf, int* wyj){ for(int j=0; j<=10; j++) if(j-modyf<0) wyj[i][j]=0; else{ wyj[i][j]=0; if(wej1!=nullptr) wyj[i][j]+=wej1[i][j-modyf]; if(wej2!=nullptr) wyj[i][j]+=wej2[i][j-modyf]; } } */ void oblicz(int i){ if(i>=rozm){ wyn[i].oblicz(a[i]); } else{ wyn[i].oblicz(wyn+2*i, wyn+2*i+1, a[i]); } } DP(int wejrozm){ rozm = wejrozm; a = new int[2*rozm]; mks = new int[2*rozm]; for(int i=0; i<2*rozm; i++) a[i]=0; wyn =new DST[2*rozm]; for(int i=2*rozm-1; i>=1; i--) oblicz(i); for(int i=rozm; i<2*rozm; i++) mks[i]=i; for(int i=rozm-1; i>=1; i--) mks[i]=mks[2*i+1]; } /* void dodaj (int i, int zm){ i+=rozm; while(i){ if(i%2 == 0 || i==1){ a[i]+=zm; oblicz(i); i--; } i>>=1; } } */ void _dodaj(int st, int n, int dl, int zm){ if(n==0) return; if(n==dl){ a[st]+=zm; oblicz(st); return; } if(n<=dl/2){ _dodaj(2*st, n, dl/2, zm); } else{ _dodaj(2*st, dl/2, dl/2, zm); _dodaj(2*st+1, n-dl/2, dl/2, zm); } oblicz(st); } void dodaj(int i, int zm){ _dodaj(1, i, rozm, zm); } DST _odp(int st, int n, int dl){ //cout << ": " << st << endl; //cout << mks[st]<< endl; //cout << n << endl; DST zwrot(-1); if(n==0) return zwrot; if(n==dl) return wyn[st]; if(n<=dl/2) { const DST& w1 = _odp(2*st, n, dl/2); zwrot.oblicz(&w1, nullptr, a[st]); return zwrot; } const DST & w1 = _odp(2*st, dl/2, dl/2); const DST & w2 = _odp(2*st+1, n-dl/2, dl/2); zwrot.oblicz(&w1, &w2, a[st]); return zwrot; } int odp(int n, int j){ const DST& zwrot = _odp(1, n, rozm); return zwrot.distr[j]; } }; void brut(int n, int * gora, int * dol, int k){ vector<int> * K= new vector<int>[2*n]; vector<int> * S= new vector<int>[2*n]; int a1, b1, a2, b2, a3, b3, a4, b4; for(int i=0;i <n; i++){ a1=min(gora[i], dol[i]); b1=max(gora[i], dol[i]); K[b1].push_back(a1); a2=min(gora[i], gora[(i+1) % n]); b2=max(gora[i], gora[(i+1) % n]); K[b2].push_back(a2); a3=min(dol[i], dol[(i+1) % n]); b3=max(dol[i], dol[(i+1) % n]); K[b3].push_back(a3); a4=min(a2, a3); b4=max(b2, b3); S[b4].push_back(a4); } long long pary[11]; for(int i=0; i<11; i++) pary[i]=0; for(int l=0; l<2*n; l++){ int zmW=0; int zmK=0; int zmS=0; for(int r=l; r<2*n; r++){ zmW++; for(int i=0; i<K[r].size(); i++) if(K[r][i]>=l) zmK++; for(int i=0; i<S[r].size(); i++) if(S[r][i]>=l) zmS++; if(zmW-zmK+zmS<=10) pary[zmW-zmK+zmS]++; } } pary[1]+=pary[0]; for(int i=1; i<=k; i++) printf("%lld ", pary[i]); delete[] K; delete[] S; } void brut2(){ int n, k; int * gora; int * dol; scanf("%d %d", &n, &k); gora = new int[n]; dol= new int[n]; for(int i=0; i<n; i++) {scanf("%d", gora+i); gora[i]--;} for(int i=0; i<n; i++) {scanf("%d", dol+i); dol[i]--;} brut(n, gora, dol, k); } int main() { brut2(); return 0; DP drzefko(16); for(int i=0; i<=16; i++) //cout << drzefko.wyn[i].distr[0] << endl; cout << i << "\t" << drzefko.odp(i, 0) << endl; drzefko.dodaj(8, 1); for(int i=0; i<=16; i++) //cout << drzefko.wyn[i].distr[0] << endl; cout << i << "\t" << drzefko.odp(i, 0) << endl; drzefko.dodaj(8, -1); for(int i=0; i<=16; i++) //cout << drzefko.wyn[i].distr[0] << endl; cout << i << "\t" << drzefko.odp(i, 0) << endl; 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | #include <iostream> #include <fstream> #include <algorithm> #include <vector> using namespace std; struct DST{ int distr[11]; void oblicz(const DST* wej1, const DST* wej2, int modyf){ for(int j=0; j<=10; j++) if(j-modyf<0) distr[j]=0; else{ distr[j]=0; if(wej1!=nullptr) distr[j]+=wej1->distr[j-modyf]; if(wej2!=nullptr) distr[j]+=wej2->distr[j-modyf]; } } void oblicz(int wej){ for(int j=0; j<=10; j++) distr[j]=(j==wej); } DST(){ } DST(int wej){ oblicz(wej); } DST(const DST* wej1, const DST* wej2, int modyf){ oblicz(wej1, wej2, modyf); } }; struct DP{ int rozm; int * a; int * mks; DST * wyn; /* void polacz(int* wej1, int* wej2, int modyf, int* wyj){ for(int j=0; j<=10; j++) if(j-modyf<0) wyj[i][j]=0; else{ wyj[i][j]=0; if(wej1!=nullptr) wyj[i][j]+=wej1[i][j-modyf]; if(wej2!=nullptr) wyj[i][j]+=wej2[i][j-modyf]; } } */ void oblicz(int i){ if(i>=rozm){ wyn[i].oblicz(a[i]); } else{ wyn[i].oblicz(wyn+2*i, wyn+2*i+1, a[i]); } } DP(int wejrozm){ rozm = wejrozm; a = new int[2*rozm]; mks = new int[2*rozm]; for(int i=0; i<2*rozm; i++) a[i]=0; wyn =new DST[2*rozm]; for(int i=2*rozm-1; i>=1; i--) oblicz(i); for(int i=rozm; i<2*rozm; i++) mks[i]=i; for(int i=rozm-1; i>=1; i--) mks[i]=mks[2*i+1]; } /* void dodaj (int i, int zm){ i+=rozm; while(i){ if(i%2 == 0 || i==1){ a[i]+=zm; oblicz(i); i--; } i>>=1; } } */ void _dodaj(int st, int n, int dl, int zm){ if(n==0) return; if(n==dl){ a[st]+=zm; oblicz(st); return; } if(n<=dl/2){ _dodaj(2*st, n, dl/2, zm); } else{ _dodaj(2*st, dl/2, dl/2, zm); _dodaj(2*st+1, n-dl/2, dl/2, zm); } oblicz(st); } void dodaj(int i, int zm){ _dodaj(1, i, rozm, zm); } DST _odp(int st, int n, int dl){ //cout << ": " << st << endl; //cout << mks[st]<< endl; //cout << n << endl; DST zwrot(-1); if(n==0) return zwrot; if(n==dl) return wyn[st]; if(n<=dl/2) { const DST& w1 = _odp(2*st, n, dl/2); zwrot.oblicz(&w1, nullptr, a[st]); return zwrot; } const DST & w1 = _odp(2*st, dl/2, dl/2); const DST & w2 = _odp(2*st+1, n-dl/2, dl/2); zwrot.oblicz(&w1, &w2, a[st]); return zwrot; } int odp(int n, int j){ const DST& zwrot = _odp(1, n, rozm); return zwrot.distr[j]; } }; void brut(int n, int * gora, int * dol, int k){ vector<int> * K= new vector<int>[2*n]; vector<int> * S= new vector<int>[2*n]; int a1, b1, a2, b2, a3, b3, a4, b4; for(int i=0;i <n; i++){ a1=min(gora[i], dol[i]); b1=max(gora[i], dol[i]); K[b1].push_back(a1); a2=min(gora[i], gora[(i+1) % n]); b2=max(gora[i], gora[(i+1) % n]); K[b2].push_back(a2); a3=min(dol[i], dol[(i+1) % n]); b3=max(dol[i], dol[(i+1) % n]); K[b3].push_back(a3); a4=min(a2, a3); b4=max(b2, b3); S[b4].push_back(a4); } long long pary[11]; for(int i=0; i<11; i++) pary[i]=0; for(int l=0; l<2*n; l++){ int zmW=0; int zmK=0; int zmS=0; for(int r=l; r<2*n; r++){ zmW++; for(int i=0; i<K[r].size(); i++) if(K[r][i]>=l) zmK++; for(int i=0; i<S[r].size(); i++) if(S[r][i]>=l) zmS++; if(zmW-zmK+zmS<=10) pary[zmW-zmK+zmS]++; } } pary[1]+=pary[0]; for(int i=1; i<=k; i++) printf("%lld ", pary[i]); delete[] K; delete[] S; } void brut2(){ int n, k; int * gora; int * dol; scanf("%d %d", &n, &k); gora = new int[n]; dol= new int[n]; for(int i=0; i<n; i++) {scanf("%d", gora+i); gora[i]--;} for(int i=0; i<n; i++) {scanf("%d", dol+i); dol[i]--;} brut(n, gora, dol, k); } int main() { brut2(); return 0; DP drzefko(16); for(int i=0; i<=16; i++) //cout << drzefko.wyn[i].distr[0] << endl; cout << i << "\t" << drzefko.odp(i, 0) << endl; drzefko.dodaj(8, 1); for(int i=0; i<=16; i++) //cout << drzefko.wyn[i].distr[0] << endl; cout << i << "\t" << drzefko.odp(i, 0) << endl; drzefko.dodaj(8, -1); for(int i=0; i<=16; i++) //cout << drzefko.wyn[i].distr[0] << endl; cout << i << "\t" << drzefko.odp(i, 0) << endl; return 0; } |