[SimpleOJ239]Cards
题目大意:
有n(n为偶数)张牌,每张牌正反面有两张数字,你可以从中选出n/2张牌,减去某一面的数字,再选出另外n/2张牌,加上某一面的数字,问最终的答案最小能是多少?
思路:
先不考虑n/2的限制,考虑每张牌的最优情况——加上较小值,减去较大值。
对每张牌记录一下两种情况的差值,以及加的个数和减的个数。
看一下是不是刚好n/2,如果不是,就加上那些差值。
注意两种情况的差值是要分开记录的,一开始没想清楚,只用了一个堆来维护,只能拿50分。
1 #include<stack> 2 #include<vector> 3 #include<cstdio> 4 #include<cctype> 5 #include<algorithm> 6 typedef long long int64; 7 inline int getint() { 8 register char ch; 9 while(!isdigit(ch=getchar())); 10 register int x=ch^'0'; 11 while(isdigit(ch=getchar())) x=(((x<<2)+x)<<1)+(ch^'0'); 12 return x; 13 } 14 const int B=1001; 15 struct Point { 16 int x,y; 17 bool operator < (const Point &another) const { 18 if(y==another.y) return x>another.x; 19 return y<another.y; 20 } 21 }; 22 std::vector<Point> a,p; 23 std::stack<int> q; 24 int l[B],r[B]; 25 inline int calc(const int &x,const int &y) { 26 if(!x) return 0; 27 return (int64)(y*2-std::min(x,y))*(std::min(x,y)-1)/2; 28 } 29 int main() { 30 int n=getint(),m=getint(),b=getint(); 31 for(register int i=1;i<=b;i++) { 32 const int x=getint(),y=getint(); 33 a.push_back((Point){x,y}); 34 } 35 std::sort(a.begin(),a.end()); 36 int64 ans=0; 37 for(register int i=1;i<=n;i++) { 38 p.clear(); 39 p.push_back((Point){i,0}); 40 for(register unsigned j=0;j<a.size();j++) { 41 if(a[j].x<=i) { 42 p.push_back(a[j]); 43 } 44 } 45 p.push_back((Point){i,m+1}); 46 while(!q.empty()) q.pop(); 47 q.push(0); 48 for(register unsigned i=1;i<p.size();i++) { 49 while(q.size()>1&&p[q.top()].x<=p[i].x) q.pop(); 50 l[i]=q.top(); 51 q.push(i); 52 } 53 while(!q.empty()) q.pop(); 54 q.push(p.size()-1); 55 for(register unsigned i=p.size()-2;i>0;i--) { 56 while(q.size()>1&&p[q.top()].x<p[i].x) q.pop(); 57 r[i]=q.top(); 58 q.push(i); 59 } 60 for(register unsigned j=1;j<p.size();j++) { 61 ans+=calc(i,p[j].y-p[j-1].y-1); 62 } 63 for(register unsigned j=1;j<p.size()-1;j++) { 64 ans+=calc(i-p[j].x,p[r[j]].y-p[l[j]].y-1)-calc(i-p[j].x,p[r[j]].y-p[j].y-1)-calc(i-p[j].x,p[j].y-p[l[j]].y-1); 65 } 66 } 67 printf("%lld\n",ans); 68 return 0; 69 }