#include <cstdio> #include <iostream> #include <algorithm> #include <string> #include <vector> #include <complex> #include <iterator> #include <set> #include <bitset> #include <map> #include <stack> #include <list> #include <queue> #include <deque> using namespace std; typedef vector<int> VI; typedef long long LL; typedef vector<VI> VVI; typedef vector<LL> VLL; typedef vector<double> VD; typedef vector<string> VS; typedef pair<int, int> PII; typedef vector<PII> VPII; #define FOR(x, b, e) for(int x = b; x <= (e); ++x) #define FORD(x, b, e) for(int x = b; x >= (e); --x) #define REP(x, n) for(int x = 0; x < (n); ++x) #define VAR(v, n) typeof(n) v = (n) #define ALL(c) (c).begin(), (c).end() #define SIZE(x) ((int)(x).size()) #define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i) #define PB push_back #define ST first #define ND second #define MP make_pair #define PF push_front int n,m,a,b,c,d; int tab[1000006]; //1e6 +6; int wzor[1000006]; const long long INF=1000000000000000000LL; int dlugosc_cyklu; VI pref[1000006]; VI mini[1000006]; bitset <1000006> v; PII gdzie[1000006]; VI cykl[1000006]; long long wynik; char zn; void generuj_cykl(int x) { int pos; pos=x%m; while(!v[pos]) { cykl[x].PB(pos); gdzie[pos]=MP(x,SIZE(cykl[x])-1); v[pos]=true; pos=(pos+n)%m; } return; } void preprocessing(int x) { int koniec; koniec=SIZE(cykl[x])-1; FOR(i,1,koniec) cykl[x].PB(cykl[x][i]); koniec=SIZE(cykl[x])-1; pref[x].PB(0); mini[x].PB(0); int oblast; //obval=0; oblast=0; FOR(i,1,koniec) { pref[x].PB(pref[x][oblast]+wzor[cykl[x][i]]); mini[x].PB(min(pref[x][oblast+1],mini[x][oblast])); oblast++; } } /* int bins(int lewy, int prawy, int ele) { int srodek; while(lewy!=prawy) { srodek=(lewy+prawy)/2; if( } }*/ long long policz(int x) { int l,r,li,przedzial,pozycja,odjem,hajsy,ileodjac,ilerazy; //sr=0; long long ilekolejek=0; li=(x%m); przedzial=gdzie[li].ST; pozycja=gdzie[li].ND; l=pozycja; r=l+dlugosc_cyklu-1; odjem=pref[przedzial][l-1]; hajsy=tab[x]; if((hajsy+mini[przedzial][r]-odjem)>0) { if((pref[przedzial][r]-odjem)>=0) { //printf(":( %d %d, pos= %d\n",pref[przedzial][r],odjem,pozycja); return INF; } ileodjac=hajsy+mini[przedzial][r]-odjem; ilerazy=(ileodjac+((-1)*(pref[przedzial][r]-odjem))-1)/((-1)*(pref[przedzial][r]-odjem)); hajsy=hajsy+ilerazy*(pref[przedzial][r]-odjem); ilekolejek=((long long)(dlugosc_cyklu))*((long long)(ilerazy)); } //printf("ilecykli %d # %d #nowehajsy %d\n", x, ilerazy,hajsy); //hajsy=hajsy+ilerazy*(pref[x][r]-odjem); -Wmaybe-uninitialized hajsy-=odjem; int lewy,prawy,srodek; lewy=l; prawy=r; hajsy*=(-1); //printf("hajsy %d , lewy %d , prawy %d \n", hajsy,lewy,prawy); while(lewy!=prawy) { srodek=(lewy+prawy)/2; //printf("# %d %d %d # val %d\n", lewy,srodek,prawy,pref[przedzial][srodek]); if(mini[przedzial][srodek]>hajsy) { lewy=srodek+1; } else prawy=srodek; } //printf("ilekolejek tera: %lld\n",ilekolejek*n); ilekolejek+=((long long)(lewy))-((long long)(l)-1LL); //printf("ilekolejek nowe: %lld\n",(ilekolejek*((long long)(n))-((long long)(n-x-1)))); //printf("lewy %d , l %d , n %d , x %d\n",lewy,l,n,x); return (ilekolejek*((long long)(n))-((long long)(n-x-1))); } int main() { scanf("%d", &n); REP(i,n) { cykl[i].PB(-1); scanf("%d", &tab[i]); } scanf("%d", &m); REP(i,m) { scanf(" %c", &zn); if(zn=='W'){ wzor[i]=1; continue; } if(zn=='P') { wzor[i]=-1; continue; } } wynik=INF; //16; dlugosc_cyklu=((m)/(__gcd(n,m))); REP(i,n) { generuj_cykl(i); preprocessing(i); //printf("policz %d == %lld\n", i,policz(i)); wynik=min(wynik,policz(i)); } if(wynik==INF) { printf("-1\n"); return 0; } printf("%lld\n",wynik); //return 0; /* REP(i,SIZE(pref[0])) { printf("%d : %d , %d , %d \n",i,pref[0][i],cykl[0][i],mini[0][i]); } */ }
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 | #include <cstdio> #include <iostream> #include <algorithm> #include <string> #include <vector> #include <complex> #include <iterator> #include <set> #include <bitset> #include <map> #include <stack> #include <list> #include <queue> #include <deque> using namespace std; typedef vector<int> VI; typedef long long LL; typedef vector<VI> VVI; typedef vector<LL> VLL; typedef vector<double> VD; typedef vector<string> VS; typedef pair<int, int> PII; typedef vector<PII> VPII; #define FOR(x, b, e) for(int x = b; x <= (e); ++x) #define FORD(x, b, e) for(int x = b; x >= (e); --x) #define REP(x, n) for(int x = 0; x < (n); ++x) #define VAR(v, n) typeof(n) v = (n) #define ALL(c) (c).begin(), (c).end() #define SIZE(x) ((int)(x).size()) #define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i) #define PB push_back #define ST first #define ND second #define MP make_pair #define PF push_front int n,m,a,b,c,d; int tab[1000006]; //1e6 +6; int wzor[1000006]; const long long INF=1000000000000000000LL; int dlugosc_cyklu; VI pref[1000006]; VI mini[1000006]; bitset <1000006> v; PII gdzie[1000006]; VI cykl[1000006]; long long wynik; char zn; void generuj_cykl(int x) { int pos; pos=x%m; while(!v[pos]) { cykl[x].PB(pos); gdzie[pos]=MP(x,SIZE(cykl[x])-1); v[pos]=true; pos=(pos+n)%m; } return; } void preprocessing(int x) { int koniec; koniec=SIZE(cykl[x])-1; FOR(i,1,koniec) cykl[x].PB(cykl[x][i]); koniec=SIZE(cykl[x])-1; pref[x].PB(0); mini[x].PB(0); int oblast; //obval=0; oblast=0; FOR(i,1,koniec) { pref[x].PB(pref[x][oblast]+wzor[cykl[x][i]]); mini[x].PB(min(pref[x][oblast+1],mini[x][oblast])); oblast++; } } /* int bins(int lewy, int prawy, int ele) { int srodek; while(lewy!=prawy) { srodek=(lewy+prawy)/2; if( } }*/ long long policz(int x) { int l,r,li,przedzial,pozycja,odjem,hajsy,ileodjac,ilerazy; //sr=0; long long ilekolejek=0; li=(x%m); przedzial=gdzie[li].ST; pozycja=gdzie[li].ND; l=pozycja; r=l+dlugosc_cyklu-1; odjem=pref[przedzial][l-1]; hajsy=tab[x]; if((hajsy+mini[przedzial][r]-odjem)>0) { if((pref[przedzial][r]-odjem)>=0) { //printf(":( %d %d, pos= %d\n",pref[przedzial][r],odjem,pozycja); return INF; } ileodjac=hajsy+mini[przedzial][r]-odjem; ilerazy=(ileodjac+((-1)*(pref[przedzial][r]-odjem))-1)/((-1)*(pref[przedzial][r]-odjem)); hajsy=hajsy+ilerazy*(pref[przedzial][r]-odjem); ilekolejek=((long long)(dlugosc_cyklu))*((long long)(ilerazy)); } //printf("ilecykli %d # %d #nowehajsy %d\n", x, ilerazy,hajsy); //hajsy=hajsy+ilerazy*(pref[x][r]-odjem); -Wmaybe-uninitialized hajsy-=odjem; int lewy,prawy,srodek; lewy=l; prawy=r; hajsy*=(-1); //printf("hajsy %d , lewy %d , prawy %d \n", hajsy,lewy,prawy); while(lewy!=prawy) { srodek=(lewy+prawy)/2; //printf("# %d %d %d # val %d\n", lewy,srodek,prawy,pref[przedzial][srodek]); if(mini[przedzial][srodek]>hajsy) { lewy=srodek+1; } else prawy=srodek; } //printf("ilekolejek tera: %lld\n",ilekolejek*n); ilekolejek+=((long long)(lewy))-((long long)(l)-1LL); //printf("ilekolejek nowe: %lld\n",(ilekolejek*((long long)(n))-((long long)(n-x-1)))); //printf("lewy %d , l %d , n %d , x %d\n",lewy,l,n,x); return (ilekolejek*((long long)(n))-((long long)(n-x-1))); } int main() { scanf("%d", &n); REP(i,n) { cykl[i].PB(-1); scanf("%d", &tab[i]); } scanf("%d", &m); REP(i,m) { scanf(" %c", &zn); if(zn=='W'){ wzor[i]=1; continue; } if(zn=='P') { wzor[i]=-1; continue; } } wynik=INF; //16; dlugosc_cyklu=((m)/(__gcd(n,m))); REP(i,n) { generuj_cykl(i); preprocessing(i); //printf("policz %d == %lld\n", i,policz(i)); wynik=min(wynik,policz(i)); } if(wynik==INF) { printf("-1\n"); return 0; } printf("%lld\n",wynik); //return 0; /* REP(i,SIZE(pref[0])) { printf("%d : %d , %d , %d \n",i,pref[0][i],cykl[0][i],mini[0][i]); } */ } |