#include <bits/stdc++.h> using namespace std; long long t[1000001]; int p[200001]; int main() { ios::sync_with_stdio(0); cin.tie(0); int n, m; cin >> n >> m; for(int i = 0; i < n; i++) cin >> t[i]; for(int i = 0; i < m; i++) cin >> p[i]; long long wynik, st; for(int i = 0; i < m; i++) { wynik = 0; st = min(wynik, t[0]-p[i]); wynik -= st; for(int j = 1; j < n; j++) { if(t[j]-t[j-1]+st < p[i]) { st = t[j]-t[j-1]+st-p[i]; wynik -= st; }else st=0; } cout << wynik << "\n"; } 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 | #include <bits/stdc++.h> using namespace std; long long t[1000001]; int p[200001]; int main() { ios::sync_with_stdio(0); cin.tie(0); int n, m; cin >> n >> m; for(int i = 0; i < n; i++) cin >> t[i]; for(int i = 0; i < m; i++) cin >> p[i]; long long wynik, st; for(int i = 0; i < m; i++) { wynik = 0; st = min(wynik, t[0]-p[i]); wynik -= st; for(int j = 1; j < n; j++) { if(t[j]-t[j-1]+st < p[i]) { st = t[j]-t[j-1]+st-p[i]; wynik -= st; }else st=0; } cout << wynik << "\n"; } return 0; } |