QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#627807#7744. ElevatorhhdhhWA 0ms3640kbC++232.5kb2024-10-10 17:14:152024-10-10 17:14:16

Judging History

你现在查看的是最新测评结果

  • [2024-10-10 17:14:16]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3640kb
  • [2024-10-10 17:14:15]
  • 提交

answer

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

#define endl '\n'
#define rep(i, a, b) for(int i = (a); i <= (b); i++)
#define per(i, a, b) for(int i = (a); i >= (b); i--)
#define rept(i, a, ne) for(int i = (a); ~i ; i=ne[i])
#define debug(x) cout<<#x<<": "<<x<<endl
#define fi first
#define sec second
mt19937_64 rnd(chrono::steady_clock::now().time_since_epoch().count());
typedef long long LL;
typedef long double  LD;
typedef unsigned long long ULL;
typedef vector<int> VI;
typedef pair<int,int>PII;
const int N=1e5+10;
struct A
{
    LL x,y,z;

    bool operator<(const A& a)const
    {
        if(x>a.x)
        return 1;
        else if(x<a.x)
        return 0;
        return z>a.z;
    }
}a[N];
int nn;
void slove()
{
    nn++;
    LL n,k;
    cin>>n>>k;
    rep(i,1,n)
    {
        auto &[x,y,z]=a[i];
        cin>>x>>y>>z;
    }
    sort(a+1,a+1+n);

    

    
    
    LL nk=0;
    LL np=0;
    LL p=0;
    LL ans=0;
    rep(i,1,n)
    {
        auto [x,y,z]=a[i];
        
        // cout<<x<<' '<<y<<' '<<z;
        // cout<<endl;
        if(p==1&&z==1)
        y--,p=0;
        if(z==2)
        {
            LL num=min((k-nk)/z,y);
            if(num&&nk==0)
            np=x;
            y-=num;
            nk+=num*z;
            if(nk>=k-1)
            {
                if(nk==k-1)
                p=1;
                nk=0;

                ans+=np;
                np=0; 
                LL pnum=y/(k/z);
                ans+=pnum*x;
                y-=pnum*(k/z);
                if(y)
                {
                    np=x;
                    nk+=y*z;
                }
            }
        }
        else
        {
            LL num=min((k-nk)/z,y);
            if(num&&nk==0)
            np=x;
            y-=num;
            nk+=num*z;
            if(nk>=k)
            {
                nk=0;
                ans+=np;
                np=0; 
                LL pnum=y/(k/z);
                ans+=pnum*x;
                y-=pnum*(k/z);
                if(y)
                {
                    np=x;
                    nk+=y*z;
                }
            }
        }
        //  debug(nk);
        //  debug(ans);
        //  debug(p);
    }
   
    if(nk)ans+=np;
    cout<<ans<<endl;
}

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
//	cout << fixed << setprecision(9);
    int t=1;
	cin>>t;
    while(t--)
    {
        slove();
    }

    return 0;
}
//#pragma GCC optimize(2)

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3640kb

input:

2
4 6
1 1 8
7 2 5
1 1 7
3 2 6
8 1200000
100000 1 100000
100000 1 12345
100000 2 100000
100000 2 12345
100000 1 100000
100000 1 12345
100000 2 100000
100000 2 12345

output:

7
100000

result:

wrong answer 1st lines differ - expected: '24', found: '7'