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
#include <cstdio>
#include <cassert>
#include <set>
#include <map>
#include <iostream>
#include <list>
#include <algorithm>
#include <string>
#include <vector>
#include <string.h>
#include <stdio.h>
#include <unordered_map>
#include <limits>
#include <iomanip>      // std::setw

using namespace std;

// Dwa z najczesciej uzywanych typow o dlugich nazwach - ich skrocenie jest bardzo istotne
typedef vector<int> VI;
typedef long long LL;
typedef unsigned long long ULL;
typedef vector<ULL> VULL;


// W programach bardzo rzadko mozna znalezc w pelni zapisana instrukcje petli. Zamiast niej, wykorzystywane sa trzy nastepujace makra:
// FOR - petla zwiekszajaca zmienna x od b do e wlacznie
#define FOR(x, b, e) for(int x = b; x <= (e); ++x)
// FORD - petla zmniejszajaca zmienna x od b do e wlacznie
#define FORD(x, b, e) for(int x = b; x >= (e); --x)
// REP - petla zwiekszajaca zmienna x od 0 do n. Jest ona bardzo czesto wykorzystywana do konstruowania i przegladania struktur danych
#define REP(x, n) for(int x = 0; x < (n); ++x)
// Makro VAR(v,n) deklaruje nowa zmienna o nazwie v oraz typie i wartosci zmiennej n. Jest ono czesto wykorzystywane podczas operowania na iteratorach struktur danych z biblioteki STL, ktorych nazwy typow sa bardzo dlugie
#define VAR(v, n) __typeof(n) v = (n)
// ALL(c) reprezentuje pare iteratorow wskazujacych odpowiednio na pierwszy i za ostatni element w strukturach danych STL. Makro to jest bardzo przydatne chociazby w przypadku korzystania z funkcji sort, ktora jako parametry przyjmuje pare iteratorow reprezentujacych przedzial elementow do posortowania.
#define ALL(c) (c).begin(), (c).end()
// Ponizsze makro sluzy do wyznaczania rozmiaru struktur danych STL. Uzywa sie go w programach, zamiast pisac po prostu x.size() z uwagi na fakt, iz wyrazenie x.size() jest typu unsigned int i w przypadku porownywania z typem int, w procesie kompilacji generowane jest ostrzezenie.
#define SIZE(x) ((int)(x).size())
// Bardzo pozyteczne makro, sluzace do iterowania po wszystkich elementach w strukturach danych STL.
#define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i)
// Skrot - zamiast pisac push_back podczas wstawiania elementow na koniec struktury danych, takiej jak vector, wystarczy napisac PB
#define PB push_back
// Podobnie - zamiast first bedziemy pisali po prostu ST
#define ST first
// a zamiast second - ND.
#define ND second

ULL sum1ToN(ULL n) {
    return n * (n + 1) / 2;
}

class Merge;

class Group {
public:
    ULL t0, n;
    multimap<LL, Merge>::iterator leftMerge, rightMerge;
};

class Merge {
public:
    Merge(Group &left, Group &right): left(left), right(right) {}
    Group &left, &right;
};

struct ResultRef {
    int *d;
    ULL *res;
    ResultRef(int *d, ULL *res): d(d), res(res) {}
    bool operator<(const ResultRef &sec) const {
        return *d < *sec.d;
    }
};

class ElasticOvens {
    vector<Group> groups;
    multimap<LL, Merge> merges;
    LL allT0s, allTEnds, allDistSums;
public:
    VULL calcCustomerWaitTimes(VULL &ts, VI &ds) {
        initialize(ts);
        VULL result(ds.size());
        vector<ResultRef> resf;
        REP(i, ds.size())
            resf.PB(ResultRef(&ds[i], &result[i]));
        sort(ALL(resf));
        reverse(ALL(resf));
        while(!resf.empty()) {
            ULL d = *resf.back().d;
            while(nextD() <= d)
                perfomMerges();
            *resf.back().res = calcCostFor(d);
            resf.pop_back();
        }
        return result;
    }
private:
    void initialize(VULL &ts) {
        allTEnds = 0;
        FOREACH(t, ts) allTEnds += *t;

        groups.clear();
        FOREACH(t, ts) {
            if (groups.empty() || groups.back().t0 != *t) {
                Group g;
                g.t0 = *t;
                g.n = 1;
                g.leftMerge = g.rightMerge = merges.end();
                groups.PB(g);
            }
            else {
                groups.back().n += 1;
            }
        }

        allT0s = 0;
        allDistSums = 0;
        FOREACH(g, groups) {
            allT0s += g->n * g->t0;
            allDistSums += sum1ToN(g->n - 1);
        }
        FOR(i, 0, (int)groups.size()-2)
            addMerge(groups[i], groups[i+1]);
    }

    void addMerge(Group &l, Group &r) {
        LL dist = r.t0 - l.t0;
        LL n = l.n;
        LL joinD = dist / n;
        if (dist % n > 0) joinD += 1;
        Merge m(l, r);
        l.rightMerge = r.leftMerge = merges.insert(make_pair(joinD, m));
    }

    void perfomMerges() {
        multimap<LL, Merge>::iterator it = merges.begin();
        Merge &m = it->second;
        Group &l = m.left, &r = m.right;
        merges.erase(it);
        allT0s -= r.t0 * r.n;
        allT0s += l.t0 * r.n;
        allDistSums -= sum1ToN(l.n - 1) + sum1ToN(r.n - 1);
        allDistSums += sum1ToN(l.n + r.n - 1);
        l.n += r.n;

        l.leftMerge = l.rightMerge = merges.end();
        // left merge
        if (l.leftMerge != merges.end()) // if has left group
            addMerge(l.leftMerge->second.left, l);

        // right merge
        if (r.rightMerge != merges.end()) // if has left group
            addMerge(l, r.rightMerge->second.right);
        
        if(l.leftMerge != merges.end())
            merges.erase(l.leftMerge);
        if(r.rightMerge != merges.end())
            merges.erase(r.rightMerge);
    }


    ULL nextD() {
        if (!merges.empty())
            return (*merges.begin()).first;
        else
            return 1E18;
    }

    ULL calcCostFor(ULL d) {
        return allT0s + allDistSums * d - allTEnds;
    }
};


int main(int argc, char *argv[]) {
#define deb(x) cout << #x << " = " << x << endl;
    if (argc == 2 && strcmp(argv[1], "debug") == 0 ) {
        //        printf("== [RUNNING IN DEBUG MODE]==\n\n");
        char test_file_path[] = "/Users/horban/Google Drive/Referencje/Programy z Algorytmiki Praktyczniej - Przykłady szablony i moje kody/Potyczki/in.txt";
        freopen(test_file_path, "r", stdin);
    }
    std::ios_base::sync_with_stdio(0);

    int n, m; cin >> n >> m;
    VULL ts;
    ts.PB(0);
    REP(i, n) {
        ULL t; cin >> t;
        ts.PB(t);
    }
    VI ds;
    REP(i, m) {
        int d; cin >> d;
        ds.PB(d);
    }
    ElasticOvens eo;
    VULL costs = eo.calcCustomerWaitTimes(ts, ds);
    FOREACH(c, costs)
        cout << *c << endl; // TODO gdzies olalem temat poczatku czasu t0
    return 0;
}