Submission #408681

# Submission time Handle Problem Language Result Execution time Memory
408681 2021-05-19T13:12:42 Z codebuster_10 Sails (IOI07_sails) C++17
30 / 100
1000 ms 9968 KB
#include <bits/stdc++.h>

using namespace std ;

#define int int64_t //be careful about this 
#define endl "\n"
#define f(i,a,b) for(int i=int(a);i<int(b);++i)

#define pr pair
#define ar array
#define fr first
#define sc second
#define vt vector
#define pb push_back
#define eb emplace_back
#define LB lower_bound  
#define UB upper_bound
#define PQ priority_queue

#define sz(x) ((int)(x).size())
#define all(a) (a).begin(),(a).end()
#define allr(a) (a).rbegin(),(a).rend()
#define mem0(a) memset(a, 0, sizeof(a))
#define mem1(a) memset(a, -1, sizeof(a))

template<class A> void rd(vt<A>& v);
template<class T> void rd(T& x){ cin >> x; }
template<class H, class... T> void rd(H& h, T&... t) { rd(h) ; rd(t...) ;}
template<class A> void rd(vt<A>& x) { for(auto& a : x) rd(a) ;}

template<class T> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; }
template<class T> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; }

template<typename T>
void __p(T a) {
  cout<<a; 
}
template<typename T, typename F>
void __p(pair<T, F> a) {
  cout<<"{";
  __p(a.first);
  cout<<",";
  __p(a.second);
  cout<<"}\n"; 
}
template<typename T>
void __p(std::vector<T> a) {
  cout<<"{";
  for(auto it=a.begin(); it<a.end(); it++)
    __p(*it),cout<<",}\n"[it+1==a.end()]; 
}
template<typename T, typename ...Arg>
void __p(T a1, Arg ...a) {
  __p(a1);
  __p(a...);
}
template<typename Arg1>
void __f(const char *name, Arg1 &&arg1) {
  cout<<name<<" : ";
  __p(arg1);
  cout<<endl;
}
template<typename Arg1, typename ... Args>
void __f(const char *names, Arg1 &&arg1, Args &&... args) {
  int bracket=0,i=0;
  for(;; i++)
    if(names[i]==','&&bracket==0)
      break;
    else if(names[i]=='(')
      bracket++;
    else if(names[i]==')')
      bracket--;
  const char *comma=names+i;
  cout.write(names,comma-names)<<" : ";
  __p(arg1);
  cout<<" | ";
  __f(comma+1,args...);
}

void setIO(string s = "") {
  ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); 
  cin.exceptions(cin.failbit); 
	cout.precision(15);	cout << fixed;
  #ifdef ONLINE_JUDGE
  if(sz(s)){
  	freopen((s+".in").c_str(),"r",stdin);
  	freopen((s+".out").c_str(),"w",stdout);
  }
  #define __f(...) 0
  #endif
}
const int N = 1e6 + 7;
void S(vector<int> &h,vector<int> &k){
	vt<pr<int,int>> v;
	f(i,0,sz(h)){
		v.pb({h[i],k[i]});
	}
	sort(all(v));
	f(i,0,sz(h)){
		h[i] = v[i].fr, k[i] = v[i].sc;
	}
}
signed main(){
  setIO();
	int n; rd(n);
	vt<int> h(n),k(n);
	f(i,0,n) rd(h[i],k[i]);
	S(h,k);
	vt<int> a(N,0);
	vt<bool> done(N,false);
	auto get=[&](int H){
		int pos = -1;
		for(int i = H-1; i >= 0; --i){
			if(done[i]) continue;
			if(pos == -1) pos = i;
			if(a[i] < a[pos]){
				pos = i;
			}
		}
		return pos;
	};
	int ans = 0;
	for(int i = 0; i < n; ++i){
		done.assign(N,false);
		while(k[i]--){
			int j = get(h[i]);
			ans += a[j];
			++a[j];
			done[j] = true;
		}
	}
	cout << ans;
}
















# Verdict Execution time Memory Grader output
1 Correct 5 ms 8140 KB Output is correct
2 Correct 5 ms 8268 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 5 ms 8140 KB Output is correct
2 Correct 5 ms 8268 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 5 ms 8268 KB Output is correct
2 Correct 5 ms 8268 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 10 ms 8268 KB Output is correct
2 Correct 170 ms 8256 KB Output is correct
# Verdict Execution time Memory Grader output
1 Execution timed out 1080 ms 8268 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1075 ms 8372 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1091 ms 8692 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Execution timed out 1061 ms 9008 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Execution timed out 1086 ms 9404 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1088 ms 9660 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1093 ms 9968 KB Time limit exceeded
2 Halted 0 ms 0 KB -