Submission #545583

#TimeUsernameProblemLanguageResultExecution timeMemory
545583pere_gilGarage (IOI09_garage)C++17
30 / 100
1 ms340 KiB
#include "bits/stdc++.h"
using namespace std;

typedef long long ll;

int main(){
	ll n,m; scanf("%lld %lld",&n,&m);
	vector<ll> r(n+1);
	for(ll i=1;i<=n;i++) scanf("%lld",&r[i]);
	vector<ll> h(m+1);
	for(ll i=1;i<=m;i++) scanf("%lld",&h[i]);

	queue<ll> car;
	stack<ll> place;
	ll res=0;
	for(ll i=n;i>0;i--) place.push(i);
	vector<ll> v(m+1);
	for(ll i=0;i<2*m;i++){
		ll act; scanf("%lld",&act);
		if(act>0){
			if(place.empty()) car.push(act);
			else{
				v[act]=place.top();
				//prllf("putting car %d in %d so + %d * %d -> %d\n",act,place.top(),h[act],r[v[act]],h[act]*r[v[act]]);
				res+=h[act]*r[v[act]];
				place.pop();
			}
		}
		else{
			place.push(v[-act]);
			if(!car.empty()){
				v[car.front()]=place.top();
				//prllf("r putting car %d in %d so + %d * %d -> %d\n",car.front(),place.top(),h[car.front()],r[v[car.front()]],h[car.front()]*r[v[car.front()]]);
				res+=h[car.front()]*r[v[car.front()]];
				place.pop();
				car.pop();
			}
		}
	}
	
	printf("%lld\n",res);
	
	return 0;
}

Compilation message (stderr)

garage.cpp: In function 'int main()':
garage.cpp:7:15: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 |  ll n,m; scanf("%lld %lld",&n,&m);
      |          ~~~~~^~~~~~~~~~~~~~~~~~~
garage.cpp:9:28: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    9 |  for(ll i=1;i<=n;i++) scanf("%lld",&r[i]);
      |                       ~~~~~^~~~~~~~~~~~~~
garage.cpp:11:28: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |  for(ll i=1;i<=m;i++) scanf("%lld",&h[i]);
      |                       ~~~~~^~~~~~~~~~~~~~
garage.cpp:19:16: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   19 |   ll act; scanf("%lld",&act);
      |           ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...