제출 #536221

#제출 시각아이디문제언어결과실행 시간메모리
536221drkarlicio2107Hiring (IOI09_hiring)C++14
54 / 100
1485 ms65536 KiB
#include <bits/stdc++.h>
using namespace std; vector < pair < pair <double, int>, pair <double, double> > > k; map <double, int> saz; vector < pair <double, int> > qi; map <int, double> ob; double min_w;
vector < pair < double, int > > sol;
const int OFF = (1 << 20); 
double tour[2*OFF];
void update(int x, double v) {
    x+=OFF;
    tour[x]=v;
    x/=2;
    while (x) {
        tour[x]=tour[x*2]+tour[x*2+1];
        x/=2;
    }
	return;
}
int query(int lo=0, int hi=OFF-1, int x=1, double now=0) {
    if (lo==hi) return x-OFF;
    int mid=(lo+hi)/2;
    double le=tour [x*2];
    double de=tour [x*2+1];
    if (le+now>min_w) return query(lo, mid, x*2, now);
    else return query(mid+1, hi, x*2+1, le+now);
}
int fen[OFF+10];
void dodaj(int a, int v){
	for (a; a<OFF+10; a+= a & -a) fen[a]+=v;
}
int ispis(int a){
	if (a==0) return 0;
	int izlaz=0;
	for (a; a>0; a-= a & -a) izlaz+=fen[a];
	return izlaz;
}
int main(){
	int n; double w; cin >> n >> w;
	for (int i=0; i<n; i++){
		double s, q; cin >> s >> q;
		double x=s/q;
		k.push_back({{x, i}, {s, q}});
		qi.push_back({q, i}); 
	}
	sort (qi.begin (), qi.end ());
	sort (k.begin (), k.end ());
	int ind=1;
	for (int i=0; i<qi.size(); i++){
		//cout << qi [i] << endl;
		saz [qi[i].second]=ind; ind++;
	}
	int max_ans=-1, res;
	for (int i=0; i<n; i++){
		double x=k[i].first.first;
		min_w=w/x;
		int ind=saz [k[i].first.second];
		//cout << x << " " << min_w << " " << ind << endl;
		int val=k[i].second.second;
		dodaj (ind, 1);
		update (ind, val);
		int gr=query ();
		if (ispis (gr-1)>max_ans){
			max_ans=ispis (gr-1); res=i;
		}
	}
	//cout << res << endl;
	for (int i=0; i<res+1; i++){
		int ind1=k[i].first.second;
		int val=k[i].second.second;
		sol.push_back((make_pair(val, ind1)));
	}
	sort (sol.begin(), sol.end());
	cout << max_ans << endl;
	for (int i=0; i<max_ans; i++) cout << sol [i].second+1 << endl;
}

컴파일 시 표준 에러 (stderr) 메시지

hiring.cpp: In function 'int query(int, int, int, double)':
hiring.cpp:20:12: warning: unused variable 'de' [-Wunused-variable]
   20 |     double de=tour [x*2+1];
      |            ^~
hiring.cpp: In function 'void dodaj(int, int)':
hiring.cpp:26:7: warning: statement has no effect [-Wunused-value]
   26 |  for (a; a<OFF+10; a+= a & -a) fen[a]+=v;
      |       ^
hiring.cpp: In function 'int ispis(int)':
hiring.cpp:31:7: warning: statement has no effect [-Wunused-value]
   31 |  for (a; a>0; a-= a & -a) izlaz+=fen[a];
      |       ^
hiring.cpp: In function 'int main()':
hiring.cpp:45:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<double, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |  for (int i=0; i<qi.size(); i++){
      |                ~^~~~~~~~~~
hiring.cpp:64:17: warning: 'res' may be used uninitialized in this function [-Wmaybe-uninitialized]
   64 |  for (int i=0; i<res+1; i++){
      |                ~^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...