#include <vector> #include <iostream> #include <string> #include <deque> using namespace std; typedef vector<int> VI; typedef long long LL; #define REF & #define PB push_back const int UNDEF = -5; const LL LLINF = 1000000ll * 1000000ll * 1000000ll + 9ll; void pokaz(VI REF v){ cerr << "["; for(int i = 0; i < v.size(); ++i){ cerr << v[i] << ", "; } cerr << "]\n"; } class chlopiec { public: int pozycja; int kasa; int obrotow = UNDEF; int reszta = UNDEF; chlopiec(int p, int k) : pozycja(p), kasa(k) {}; void pokaz(){ cerr << "(poz=" << pozycja << ", kasa=" << kasa << ", obr="<< obrotow << ", r=" << reszta << ")"; } }; class element { public: int pozycja; int wygrana; vector<chlopiec> chlopcy; element(int p, int w, vector<chlopiec> c) : pozycja(p), wygrana(w), chlopcy(c) {} void pokaz(){ cerr << "(poz=" << pozycja << ", wyg=" << wygrana << ", ["; for(int i = 0; i < chlopcy.size(); ++i){ chlopcy[i].pokaz(); cerr << ", "; } cerr << "])\n"; } }; class cykl{ public: int dl = 0; int suma = 0; vector<element> elementy; void pokaz(){ cerr << suma << endl; for(int i = 0; i < elementy.size(); ++i){ elementy[i].pokaz(); cerr << " "; } cerr << endl; } }; int n, m; LL f(cykl REF C){ VI ps(2 * C.dl); ps[0]=0; for(int i = 1; i < 2*C.dl; ++i) ps[i] = ps[i-1] + C.elementy[(i-1) % C.dl].wygrana; //pokaz(ps); VI miny(C.dl); deque<int> deq; for(int i = 2 * C.dl - 1; i >= C.dl; --i){ /////// while(!deq.empty() && ps[i] <= ps[deq[0]]) deq.pop_front(); deq.push_front(i); } for(int i = C.dl - 1; i >= 0; --i){ if(deq.back() == i + C.dl) deq.pop_back(); /////// while(!deq.empty() && ps[i] <= ps[deq[0]]) deq.pop_front(); deq.push_front(i); miny[i] = ps[deq.back()] - ps[i]; } //pokaz(miny); for(int i = 0; i < C.dl; ++i){ for(int k = 0; k < C.elementy[i].chlopcy.size(); ++k){ chlopiec REF chlop = C.elementy[i].chlopcy[k]; if(-miny[i] >= chlop.kasa){ chlop.obrotow = 0; chlop.reszta = min(chlop.kasa, -miny[i]); } else if(C.suma < 0){ chlop.obrotow = (chlop.kasa + miny[i] - C.suma - 1) / (-C.suma); chlop.reszta = chlop.kasa - (-C.suma) * chlop.obrotow; } else{ chlop.obrotow = UNDEF; chlop.reszta = UNDEF; } } } //C.pokaz(); int M = -1; for(int i = 0; i < 2*C.dl; ++i) M = max(M, abs(ps[i])); M *= 2; VI indeksy(2*M + 9); M += 3; LL minn = LLINF; for(int i = 2*C.dl-1; i >= 0; i--){ indeksy[ps[i] + M] = i; if(i >= C.dl) continue; for(int k = 0; k < C.elementy[i].chlopcy.size(); ++k){ chlopiec REF chlop = C.elementy[i].chlopcy[k]; //chlop.pokaz(); cerr << "\n"; if(chlop.reszta == UNDEF) continue; int indeks = indeksy[ps[i] - chlop.reszta + M]; //cerr << "chlop.pozycja = " << chlop.pozycja << endl; LL ruchow = LL(chlop.obrotow) * LL(C.dl); ruchow += indeks - i; //cerr << "ruchow = " << ruchow << endl; LL wyn = 0; wyn += chlop.pozycja; wyn += LL(n) * LL(ruchow-1); wyn += 1; //cerr << "wyn = " << wyn << endl; minn = min(minn, wyn); } } return minn; } const int mx = 1000*1000 + 9; vector<chlopiec> chlopcy[mx]; int main(){ ios_base::sync_with_stdio(0); cin >> n; VI kasa(n); for(int i = 0; i < n; ++i) cin >> kasa[i]; cin >> m; string s; cin >> s; for(int i = 0; i < n; ++i) chlopcy[i % m].PB(chlopiec(i,kasa[i])); VI bylo(m); vector<cykl> cykle; for(int start = 0; start < m; ++start){ if(!bylo[start]){ cykle.PB(cykl()); cykl REF C = cykle.back(); int pozycja = start; do{ int wygrana = s[pozycja] == 'W' ? 1 : -1; C.suma += wygrana; C.elementy.PB(element(pozycja, wygrana, chlopcy[pozycja])); bylo[pozycja] = true; pozycja = (pozycja + n) % m; } while(pozycja != start); C.dl = C.elementy.size(); //C.pokaz(); } } LL minn = LLINF; for(int i = 0; i < cykle.size(); ++i) minn = min(minn, f(cykle[i])); if(minn == LLINF) cout << "-1\n"; else cout << minn << "\n"; }
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 | #include <vector> #include <iostream> #include <string> #include <deque> using namespace std; typedef vector<int> VI; typedef long long LL; #define REF & #define PB push_back const int UNDEF = -5; const LL LLINF = 1000000ll * 1000000ll * 1000000ll + 9ll; void pokaz(VI REF v){ cerr << "["; for(int i = 0; i < v.size(); ++i){ cerr << v[i] << ", "; } cerr << "]\n"; } class chlopiec { public: int pozycja; int kasa; int obrotow = UNDEF; int reszta = UNDEF; chlopiec(int p, int k) : pozycja(p), kasa(k) {}; void pokaz(){ cerr << "(poz=" << pozycja << ", kasa=" << kasa << ", obr="<< obrotow << ", r=" << reszta << ")"; } }; class element { public: int pozycja; int wygrana; vector<chlopiec> chlopcy; element(int p, int w, vector<chlopiec> c) : pozycja(p), wygrana(w), chlopcy(c) {} void pokaz(){ cerr << "(poz=" << pozycja << ", wyg=" << wygrana << ", ["; for(int i = 0; i < chlopcy.size(); ++i){ chlopcy[i].pokaz(); cerr << ", "; } cerr << "])\n"; } }; class cykl{ public: int dl = 0; int suma = 0; vector<element> elementy; void pokaz(){ cerr << suma << endl; for(int i = 0; i < elementy.size(); ++i){ elementy[i].pokaz(); cerr << " "; } cerr << endl; } }; int n, m; LL f(cykl REF C){ VI ps(2 * C.dl); ps[0]=0; for(int i = 1; i < 2*C.dl; ++i) ps[i] = ps[i-1] + C.elementy[(i-1) % C.dl].wygrana; //pokaz(ps); VI miny(C.dl); deque<int> deq; for(int i = 2 * C.dl - 1; i >= C.dl; --i){ /////// while(!deq.empty() && ps[i] <= ps[deq[0]]) deq.pop_front(); deq.push_front(i); } for(int i = C.dl - 1; i >= 0; --i){ if(deq.back() == i + C.dl) deq.pop_back(); /////// while(!deq.empty() && ps[i] <= ps[deq[0]]) deq.pop_front(); deq.push_front(i); miny[i] = ps[deq.back()] - ps[i]; } //pokaz(miny); for(int i = 0; i < C.dl; ++i){ for(int k = 0; k < C.elementy[i].chlopcy.size(); ++k){ chlopiec REF chlop = C.elementy[i].chlopcy[k]; if(-miny[i] >= chlop.kasa){ chlop.obrotow = 0; chlop.reszta = min(chlop.kasa, -miny[i]); } else if(C.suma < 0){ chlop.obrotow = (chlop.kasa + miny[i] - C.suma - 1) / (-C.suma); chlop.reszta = chlop.kasa - (-C.suma) * chlop.obrotow; } else{ chlop.obrotow = UNDEF; chlop.reszta = UNDEF; } } } //C.pokaz(); int M = -1; for(int i = 0; i < 2*C.dl; ++i) M = max(M, abs(ps[i])); M *= 2; VI indeksy(2*M + 9); M += 3; LL minn = LLINF; for(int i = 2*C.dl-1; i >= 0; i--){ indeksy[ps[i] + M] = i; if(i >= C.dl) continue; for(int k = 0; k < C.elementy[i].chlopcy.size(); ++k){ chlopiec REF chlop = C.elementy[i].chlopcy[k]; //chlop.pokaz(); cerr << "\n"; if(chlop.reszta == UNDEF) continue; int indeks = indeksy[ps[i] - chlop.reszta + M]; //cerr << "chlop.pozycja = " << chlop.pozycja << endl; LL ruchow = LL(chlop.obrotow) * LL(C.dl); ruchow += indeks - i; //cerr << "ruchow = " << ruchow << endl; LL wyn = 0; wyn += chlop.pozycja; wyn += LL(n) * LL(ruchow-1); wyn += 1; //cerr << "wyn = " << wyn << endl; minn = min(minn, wyn); } } return minn; } const int mx = 1000*1000 + 9; vector<chlopiec> chlopcy[mx]; int main(){ ios_base::sync_with_stdio(0); cin >> n; VI kasa(n); for(int i = 0; i < n; ++i) cin >> kasa[i]; cin >> m; string s; cin >> s; for(int i = 0; i < n; ++i) chlopcy[i % m].PB(chlopiec(i,kasa[i])); VI bylo(m); vector<cykl> cykle; for(int start = 0; start < m; ++start){ if(!bylo[start]){ cykle.PB(cykl()); cykl REF C = cykle.back(); int pozycja = start; do{ int wygrana = s[pozycja] == 'W' ? 1 : -1; C.suma += wygrana; C.elementy.PB(element(pozycja, wygrana, chlopcy[pozycja])); bylo[pozycja] = true; pozycja = (pozycja + n) % m; } while(pozycja != start); C.dl = C.elementy.size(); //C.pokaz(); } } LL minn = LLINF; for(int i = 0; i < cykle.size(); ++i) minn = min(minn, f(cykle[i])); if(minn == LLINF) cout << "-1\n"; else cout << minn << "\n"; } |