2013 Asia Changsha Regional Contest A
Alice is providing print service, while the pricing doesn't seem to be reasonable, so people using her print service found some tricks to save money.
For example, the price when printing less than 100 pages is 20 cents per page, but when printing not less than 100 pages, you just need to pay only 10 cents per page. It's easy to figure out that if you want to print 99 pages, the best choice is to print an extra blank page so that the money you need to pay is 100 × 10 cents instead of 99 × 20 cents.
Now given the description of pricing strategy and some queries, your task is to figure out the best ways to complete those queries in order to save money.
Input
The first line contains an integer T (≈ 10) which is the number of test cases. Then T cases follow.
Each case contains 3 lines. The first line contains two integers n, m (0 < n, m ≤ 105). The second line contains 2n integers s1, p1, s2, p2, ..., sn, pn (0=s1 < s2 < ... < sn ≤ 109, 109 ≥ p1 ≥ p2 ≥ ... ≥ pn ≥ 0). The price when printing no less than si but less than si+1 pages is pi cents per page (for i=1..n-1). The price when printing no less than sn pages is pn cents per page. The third line containing m integers q1 .. qm (0 ≤ qi ≤ 109) are the queries.
Output
For each query qi, you should output the minimum amount of money (in cents) to pay if you want to print qi pages, one output in one line.
Sample Input
1 2 3 0 20 100 10 0 99 100
Sample Output
0 1000 1000
1 #include <cstdio> 2 #include <iostream> 3 #include <vector> 4 #include <set> 5 #include <cstring> 6 #include <string> 7 #include <map> 8 #include <cmath> 9 #include <ctime> 10 #include <algorithm> 11 #include <queue> 12 13 using namespace std; 14 #define INF 0x7fffffff 15 #define mod 1000000007 16 #define maxm 1001 17 #define mp make_pair 18 #define pb push_back 19 #define rep(i,n) for(int i = 0; i < (n); i++) 20 #define re return 21 #define fi first 22 #define se second 23 #define sz(x) ((int) (x).size()) 24 #define all(x) (x).begin(), (x).end() 25 #define sqr(x) ((x) * (x)) 26 #define sqrt(x) sqrt(abs(x)) 27 #define y0 y3487465 28 //#define y1 y8687969 29 #define fill(x,y) memset(x,y,sizeof(x)) 30 31 typedef vector<int> vi; 32 typedef long long ll; 33 typedef long double ld; 34 typedef double D; 35 typedef pair<int, int> ii; 36 typedef vector<ii> vii; 37 typedef vector<string> vs; 38 typedef vector<vi> vvi; 39 40 template<class T> T abs(T x) { re x > 0 ? x : -x; } 41 42 const int maxn = 111505; 43 int n, m, t, k; 44 ll x; 45 //string s; 46 ll s[maxn], p[maxn]; 47 ll sum[maxn]; 48 int main(){ 49 scanf("%d", &t); 50 while (t--){ 51 scanf("%d%d", &n, &m); 52 for (int i = 0; i < n; i++) 53 scanf("%d%d", &s[i], &p[i]); 54 sum[n - 1] = s[n - 1] * p[n - 1]; 55 sum[n] = ((ll) 1 << 62) - 1; 56 for (int i = n - 2; i >= 0; i--)sum[i] = min(sum[i + 1], s[i] * p[i]); 57 while (m--){ 58 scanf("%lld", &x); 59 int L = upper_bound(s, s + n, x) - s; 60 ll ans = ((ll) 1 << 62) - 1; 61 ans = min(ans, p[L - 1] * x); 62 printf("%lld\n", min(ans, sum[L])); 63 } 64 } 65 return 0; 66 }
浙公网安备 33010602011771号