// Arti1990, II UWr #include <bits/stdc++.h> #define forr(i, n) for(int i=0; i<n; i++) #define FOREACH(iter, coll) for(auto iter = coll.begin(); iter != coll.end(); ++iter) #define FOREACHR(iter, coll) for(auto iter = coll.rbegin(); iter != coll.rend(); ++iter) #define lbound(P,K,FUN) ({auto SSS=P, PPP = P-1, KKK=(K)+1; while(PPP+1!=KKK) {SSS = (PPP+(KKK-PPP)/2); if(FUN(SSS)) KKK = SSS; else PPP = SSS;} PPP;}) #define testy() int _tests; cin>>_tests; FOR(_test, 1, _tests) #define CLEAR(tab) memset(tab, 0, sizeof(tab)) #define CONTAIN(el, coll) (coll.find(el) != coll.end()) #define FOR(i, a, b) for(int i=a; i<=b; i++) #define FORD(i, a, b) for(int i=a; i>=b; i--) #define MP make_pair #define PB push_back #define ff first #define ss second #define deb(X) X; #define SIZE(coll) ((int)coll.size()) #define M 1000000007 #define INF 1000000007LL using namespace std; int n, m, czas; int tab[1000007], tab2[1000007]; long long res[1000007], potrzeba[1000007], dres[1000007], kiedy[1000007]; vector <int> dzielniki[300007]; void init() { int mx = 100000; FOR(i, 1, mx) for(int j = i; j <= mx; j += i) dzielniki[j].PB(i); /* FOR(i, 1, 100) { cout << "dzielniki " << i << ": "; for(auto el : dzielniki[i]) cout << el << " "; cout << '\n'; }*/ } /* long long ile_trzeba(int x, int dl) { return max(0, (dl-1 + (x-2))/(x-1)-1); } long long ile_trzeba(int x, vector <int> &v) { long long r = 0; for(auto el : v) r += ile_trzeba(x, el); return r; } void doloz(int dl, int razy) { //cout << "doklada " << dl << " razy " << razy << '\n'; FOR(i, 1, dl-2) { potrzeba[i] += ile_trzeba(i, dl) * razy; //cout << " potrzeba " << potrzeba[i] << " elementow " << i << '\n'; } } */ long long policz_przedzialy_o_dl(int p, int k) { if(k < p) return 0; long long r = (m+1)*(k-p+1); r -= (p+k)*(k-p+1)/2; // suma od p do k return r; } void update_res(int nr) { res[nr] = (res[nr] + dres[nr]*(czas - kiedy[nr])) % M; kiedy[nr] = czas; dres[nr] = policz_przedzialy_o_dl(max(potrzeba[nr], 1LL), min(potrzeba[nr-1], (long long)m+1)-1); } void zwieksz_potrzebe(int nr) { potrzeba[nr]++; update_res(nr); update_res(nr+1); } void zwieksz(int dl) { //cout << "doklada " << dl << " razy " << razy << '\n'; dl -= 2; int d; for(auto d : dzielniki[dl]) zwieksz_potrzebe(d+1); /* for(d=1; d*d < dl; d++) { if(dl % d == 0) { zwieksz_potrzebe(d+1); zwieksz_potrzebe(dl/d+1); } //cout << " potrzeba " << potrzeba[i] << " elementow " << i << '\n'; } if(d*d == dl) zwieksz_potrzebe(d+1); */ } void dolicz_monotoniczne(vector <int> &v, int p, int k) // dolicza tylko element k { if(p == k) return; if(p+1 == k) { //doloz(2, 1); v.PB(2); return; } if(tab[k-2] < tab[k-1] && tab[k-1] < tab[k] || tab[k-2] > tab[k-1] && tab[k-1] > tab[k]) { //doloz(v[v.size()-1], -1); v[v.size()-1]++; //doloz(v[v.size()-1], 1); zwieksz(v[v.size()-1]); } else { //doloz(2, 1); v.PB(2); } //cout << "wektor: "; //for(auto el : v) // cout << el << " "; //cout << '\n'; } void licz() { FOR(i, 0, n-1) { vector <int> v; forr(j, n+3) { potrzeba[j] = 0; dres[j] = 0; kiedy[j] = i-1; } czas = i-1; zwieksz_potrzebe(1); FOR(j, i, n-1) { czas++; int dl = j-i+1; if(potrzeba[1] < m+1) zwieksz_potrzebe(1); //potrzeba[1] = min(m, dl)+1; dolicz_monotoniczne(v, i, j); /*cout << "przedzial od " << i << " do " << j << ": "; FOR(k, i, j) cout << tab[k] << " "; cout << '\n' << "monotoniczne: "; for(auto el : v) cout << el << " "; cout << '\n'; /**/ /*FOR(i, 2, max(dl, 2)) { //int x = ile_trzeba(i, v); //int x = potrzeba[i]; //cout << " do " << i << " potrzeba " << x << ", powinno byc " << ile_trzeba(i, v) << '\n'; //x = max(x, 1); //cout << " dolicza przedzialy od " << x << " do " << last-1 << '\n'; //res[i] += policz_przedzialy_o_dl(max(potrzeba[i], 1LL), min(potrzeba[i-1], (long long)m+1)-1); //res[i] += dres[i]; //last = min(x, last); }*/ } czas++; FOR(j, 2, n+1) update_res(j); //cout << "res[2]: " << res[2] << '\n'; } } int solve() { init(); cin >> n >> m; forr(i, n) cin >> tab[i]; forr(i, m) cin >> tab2[i]; licz(); swap(n, m); forr(i, n+m) swap(tab[i], tab2[i]); licz(); FOR(i, 1, min(n, m)) res[2] -= (n-i+1)*(m-i+1); FOR(i, 1, n+m) cout << res[i]%M << " "; cout << '\n'; return 0; } int main() { std::ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); solve(); 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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | // Arti1990, II UWr #include <bits/stdc++.h> #define forr(i, n) for(int i=0; i<n; i++) #define FOREACH(iter, coll) for(auto iter = coll.begin(); iter != coll.end(); ++iter) #define FOREACHR(iter, coll) for(auto iter = coll.rbegin(); iter != coll.rend(); ++iter) #define lbound(P,K,FUN) ({auto SSS=P, PPP = P-1, KKK=(K)+1; while(PPP+1!=KKK) {SSS = (PPP+(KKK-PPP)/2); if(FUN(SSS)) KKK = SSS; else PPP = SSS;} PPP;}) #define testy() int _tests; cin>>_tests; FOR(_test, 1, _tests) #define CLEAR(tab) memset(tab, 0, sizeof(tab)) #define CONTAIN(el, coll) (coll.find(el) != coll.end()) #define FOR(i, a, b) for(int i=a; i<=b; i++) #define FORD(i, a, b) for(int i=a; i>=b; i--) #define MP make_pair #define PB push_back #define ff first #define ss second #define deb(X) X; #define SIZE(coll) ((int)coll.size()) #define M 1000000007 #define INF 1000000007LL using namespace std; int n, m, czas; int tab[1000007], tab2[1000007]; long long res[1000007], potrzeba[1000007], dres[1000007], kiedy[1000007]; vector <int> dzielniki[300007]; void init() { int mx = 100000; FOR(i, 1, mx) for(int j = i; j <= mx; j += i) dzielniki[j].PB(i); /* FOR(i, 1, 100) { cout << "dzielniki " << i << ": "; for(auto el : dzielniki[i]) cout << el << " "; cout << '\n'; }*/ } /* long long ile_trzeba(int x, int dl) { return max(0, (dl-1 + (x-2))/(x-1)-1); } long long ile_trzeba(int x, vector <int> &v) { long long r = 0; for(auto el : v) r += ile_trzeba(x, el); return r; } void doloz(int dl, int razy) { //cout << "doklada " << dl << " razy " << razy << '\n'; FOR(i, 1, dl-2) { potrzeba[i] += ile_trzeba(i, dl) * razy; //cout << " potrzeba " << potrzeba[i] << " elementow " << i << '\n'; } } */ long long policz_przedzialy_o_dl(int p, int k) { if(k < p) return 0; long long r = (m+1)*(k-p+1); r -= (p+k)*(k-p+1)/2; // suma od p do k return r; } void update_res(int nr) { res[nr] = (res[nr] + dres[nr]*(czas - kiedy[nr])) % M; kiedy[nr] = czas; dres[nr] = policz_przedzialy_o_dl(max(potrzeba[nr], 1LL), min(potrzeba[nr-1], (long long)m+1)-1); } void zwieksz_potrzebe(int nr) { potrzeba[nr]++; update_res(nr); update_res(nr+1); } void zwieksz(int dl) { //cout << "doklada " << dl << " razy " << razy << '\n'; dl -= 2; int d; for(auto d : dzielniki[dl]) zwieksz_potrzebe(d+1); /* for(d=1; d*d < dl; d++) { if(dl % d == 0) { zwieksz_potrzebe(d+1); zwieksz_potrzebe(dl/d+1); } //cout << " potrzeba " << potrzeba[i] << " elementow " << i << '\n'; } if(d*d == dl) zwieksz_potrzebe(d+1); */ } void dolicz_monotoniczne(vector <int> &v, int p, int k) // dolicza tylko element k { if(p == k) return; if(p+1 == k) { //doloz(2, 1); v.PB(2); return; } if(tab[k-2] < tab[k-1] && tab[k-1] < tab[k] || tab[k-2] > tab[k-1] && tab[k-1] > tab[k]) { //doloz(v[v.size()-1], -1); v[v.size()-1]++; //doloz(v[v.size()-1], 1); zwieksz(v[v.size()-1]); } else { //doloz(2, 1); v.PB(2); } //cout << "wektor: "; //for(auto el : v) // cout << el << " "; //cout << '\n'; } void licz() { FOR(i, 0, n-1) { vector <int> v; forr(j, n+3) { potrzeba[j] = 0; dres[j] = 0; kiedy[j] = i-1; } czas = i-1; zwieksz_potrzebe(1); FOR(j, i, n-1) { czas++; int dl = j-i+1; if(potrzeba[1] < m+1) zwieksz_potrzebe(1); //potrzeba[1] = min(m, dl)+1; dolicz_monotoniczne(v, i, j); /*cout << "przedzial od " << i << " do " << j << ": "; FOR(k, i, j) cout << tab[k] << " "; cout << '\n' << "monotoniczne: "; for(auto el : v) cout << el << " "; cout << '\n'; /**/ /*FOR(i, 2, max(dl, 2)) { //int x = ile_trzeba(i, v); //int x = potrzeba[i]; //cout << " do " << i << " potrzeba " << x << ", powinno byc " << ile_trzeba(i, v) << '\n'; //x = max(x, 1); //cout << " dolicza przedzialy od " << x << " do " << last-1 << '\n'; //res[i] += policz_przedzialy_o_dl(max(potrzeba[i], 1LL), min(potrzeba[i-1], (long long)m+1)-1); //res[i] += dres[i]; //last = min(x, last); }*/ } czas++; FOR(j, 2, n+1) update_res(j); //cout << "res[2]: " << res[2] << '\n'; } } int solve() { init(); cin >> n >> m; forr(i, n) cin >> tab[i]; forr(i, m) cin >> tab2[i]; licz(); swap(n, m); forr(i, n+m) swap(tab[i], tab2[i]); licz(); FOR(i, 1, min(n, m)) res[2] -= (n-i+1)*(m-i+1); FOR(i, 1, n+m) cout << res[i]%M << " "; cout << '\n'; return 0; } int main() { std::ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); solve(); return 0; } |