博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Earth Wind and Fire CodeForces - 1148E (构造)
阅读量:4945 次
发布时间:2019-06-11

本文共 2105 字,大约阅读时间需要 7 分钟。

大意: $n$个石子, 第$i$个石子初始位置$s_i$, 每次操作选两个石子$i,j$, 要求$s_i<s_j$, 任取$d$, 满足$0\le 2d\le s_j-s_i$, 将$s_i,s_j$改为$s_i+d,s_j-d$. 给定数组$t$, 求是否能将所有石子位置摆成数组$t$.

 

没要求最小化操作数, 所以直接贪心选即可, 操作数一定是不超过$n$的.

这场当时没时间打, 感觉好亏.

 

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define REP(i,a,n) for(int i=a;i<=n;++i)#define PER(i,a,n) for(int i=n;i>=a;--i)#define hr putchar(10)#define pb push_back#define lc (o<<1)#define rc (lc|1)#define mid ((l+r)>>1)#define ls lc,l,mid#define rs rc,mid+1,r#define x first#define y second#define io std::ios::sync_with_stdio(false)#define endl '\n'#define DB(a) ({REP(__i,1,n) cout<
<<' ';hr;})using namespace std;typedef long long ll;typedef pair
pii;const int P = 1e9+7, P2 = 998244353, INF = 0x3f3f3f3f;ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}//headconst int N = 1e6+10;int n, c1, d1;struct _ { int x,id; bool operator < (const _ &rhs) const { return x
f[y]) puts("NO"),exit(0); p1[cnt]=x,p2[cnt]=y,p3[cnt]=v; f[x]+=v,f[y]-=v;}int main() { scanf("%d", &n); ll s1=0,s2=0; REP(i,1,n) { scanf("%d",&a[i].x),a[i].id=i,s1+=a[i].x; f[i]=a[i].x; } REP(i,1,n) scanf("%d",&b[i].x),b[i].id=i,s2+=b[i].x; if (s1!=s2) return puts("NO"),0; sort(a+1,a+1+n); sort(b+1,b+1+n); REP(i,1,n) { if (a[i].x
b[i].x) d[++d1]={a[i].x-b[i].x,a[i].id}; } sort(d+1,d+1+d1,[](_ x,_ y){return f[x.id]>f[y.id];}); sort(c+1,c+1+c1,[](_ x,_ y){return f[x.id]>f[y.id];}); int now = 1; REP(i,1,d1) { while (now<=c1&&c[now].x<=d[i].x) { add(c[now].id,d[i].id,c[now].x); d[i].x-=c[now].x, ++now; } if (d[i].x) { add(c[now].id,d[i].id,d[i].x); c[now].x-=d[i].x; } } puts("YES"); printf("%d\n",cnt); REP(i,1,cnt) printf("%d %d %d\n",p1[i],p2[i],p3[i]);}

 

 

 

转载于:https://www.cnblogs.com/uid001/p/10966682.html

你可能感兴趣的文章
hotCity 小程序城市选择器, 城市数据库可自己导出
查看>>
iphone UI的大小(转)
查看>>
Android Layout XML属性
查看>>
E20170828-mk
查看>>
E20170905-mk
查看>>
E20180527-hm
查看>>
【Knockout】三、data-bind声明式绑定
查看>>
虚拟机共享文件夹不显示
查看>>
解决移动端click点击问题
查看>>
Java之排序总结
查看>>
分页组件
查看>>
#100天计划# 2013年9月30日
查看>>
图论:Floyd-多源最短路、无向图最小环
查看>>
浏览指南
查看>>
asp.net中MVC多语言包的使用
查看>>
session
查看>>
第三周作业1
查看>>
hdu 1021 Fibonacci Again 递推数列模周期
查看>>
【前端_js】bootstrap——表格插件的使用
查看>>
关于tensorflow中维度的问题
查看>>