QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#688707#7744. ElevatorTime_stopCompile Error//C++17676b2024-10-30 12:50:452024-10-30 12:50:45

Judging History

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

  • [2024-10-30 12:50:45]
  • 评测
  • [2024-10-30 12:50:45]
  • 提交

answer

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

bool cmp(pair<ll,ll> a,pair<ll,ll> b){
	return a.first>=b.first;
}


void solve(){
	ll n,k;
	vector<pair<ll,ll> > a;
	cin>>n>>k;
	for(int i=0;i<n;i++){
		ll x,y,z;
		cin>>x>>y>>z;
		a.push_back({z,x*y});
	}
	a.push_back({0,1});
	sort(a.begin(),a.end(),cmp);
	ll ans=0;
	ll now=a[0].first,sum=0;
	for(auto it:a;){
		sum+=it.second;
	   if(sum>k){
	   	  ans+=now;
	   	  sum-=k;
	   	  now=it.first;
	   	  ll c=(sum-1)/k;
	   	  ans=ans+c*now;
	   	  sum=sum-c*k;
	   }
	}
	ans+=now;
	cout<<ans<<endl;
}


int main(){
	int t;
	cin>>t;
	while(t--){
		solve();
	}
} 

詳細信息

answer.code: In function ‘void solve()’:
answer.code:23:22: error: expected ‘)’ before ‘;’ token
   23 |         for(auto it:a;){
      |            ~         ^
      |                      )
answer.code:23:23: error: expected primary-expression before ‘)’ token
   23 |         for(auto it:a;){
      |                       ^