codeforces920D.Tanks+dp

注意return 写法
D. Tanks
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Petya sometimes has to water his field. To water the field, Petya needs a tank with exactly V ml of water.

Petya has got N tanks, i-th of them initially containing ai ml of water. The tanks are really large, any of them can contain any amount of water (no matter how large this amount is).

Also Petya has got a scoop that can contain up to K ml of water (initially the scoop is empty). This scoop can be used to get some water from some tank, and after that pour it all into some tank (it is impossible to get water from multiple tanks without pouring it, or leave some water in the scoop when pouring it). When Petya tries to get some water from a tank, he gets min(v, K) water, where v is the current volume of water in the tank.

Is it possible to obtain a tank with exactly V ml of water using these operations? If it is possible, print a sequence of operations that allows to do it. If there are multiple ways to obtain needed amount of water in some tank, print any of them.

Input

The first line contains 3 integers: N (2 ≤ N ≤ 5000), K (1 ≤ K ≤ 5000), and V (0 ≤ V ≤ 109) — the number of tanks, the maximum volume of water the scoop can contain, and the required amount of water in some tank, respectively.

The second line contains N integers ai (0 ≤ ai ≤ 105), where ai is initial volume of water in i-th tank.

Output

If it is impossible to obtain a tank with exactly V ml of water, print NO.

Otherwise print YES in the first line, and beginning from the second line, print the sequence of operations in the following format:

Each line has to contain 3 numbers denoting a compressed operation: "cnt x y" (1 ≤ cnt ≤ 109, 1 ≤ x, y ≤ N), where x is the index of the tank where we get water, y is the index of the tank where we pour water, and cnt is the number of times we transfer water from tank x to tank y.

The number of these lines must not exceed N + 5.

Examples
Input
Copy
2 3 5
2 3
Output
Copy
YES
1 2 1
Input
Copy
2 3 4
2 3
Output
Copy
NO
Input
Copy
5 2 0
1 3 5 7 9
Output
Copy
YES
2 2 1
3 3 1
4 4 1
5 5 1


#include<bits/stdc++.h>
using namespace std;

#define ll long long
#define all(x) (x).begin(),x.end()
ll rd(){
    ll x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}

const int N=5e3+10;

int in[N];
bool dp[N][N];
bool prv[N][N];


int main(){
    freopen("in.txt","r",stdin);
    int n=rd(),k=rd(),v=rd();
    int s=0;
    for(int i=1;i<=n;i++)
       in[i]=rd(),s+=in[i];
    if(s<v) return puts("NO"),0;
    dp[0][0]=1;
    for(int i=1;i<=n;i++){
        int x=in[i]%k;
        for(int j=0;j<k;j++){
            if(!dp[i-1][j])continue;
            dp[i][j]=true;
            prv[i][j]=false;
            dp[i][(j+x)%k]=true;
            prv[i][(j+x)%k]=true;
        }
    }
    if(!dp[n][v%k])return puts("NO"),0;

    vector<int> vl[2];

    int vv=v%k;
    for(int i=n;i>=1;i--){
        int x=in[i]%k;
        if(prv[i][vv]){
            vl[1].push_back(i);
            vv=(vv-x+k)%k;
        }
        else vl[0].push_back(i);
    }

    sort(all(vl[0]));
    sort(all(vl[1]));
    puts("YES");
    if(!vl[0].empty())
        for(int i=1;i<vl[0].size();i++)
        printf("%d %d %d\n",10000,vl[0][i],vl[0][0]);
    if(!vl[1].empty())
        for(int i=1;i<vl[1].size();i++)
        printf("%d %d %d\n",10000,vl[1][i],vl[1][0]);
    s=0;
    for(auto it:vl[1])s+=in[it];
    int p0,p1;
    if(vl[0].empty())p0=vl[1][1],p1=vl[1][0];
    else if(vl[1].empty())p0=vl[0][0],p1=vl[0][1];
    else p0=vl[0][0],p1=vl[1][0];
  //  cout<<s<<" "<<v<<endl;
    if(s>v)printf("%d %d %d\n",(s-v)/k,p1,p0);
    if(s<v) printf("%d %d %d\n",(v-s)/k,p0,p1);
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值