Submission #149226

# Submission time Handle Problem Language Result Execution time Memory
149226 2019-09-01T06:00:44 Z 욱방켜!! (twitch.tv/wookje)(#3584, kig9981, cheetose, jh05013) King of Chairs (FXCUP4_chairs) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>

long long SendInfo(std::vector<int> W, std::vector<int> C) {
	int N = W.size();
	std::multiset<int> CC(C.begin(),C.end());
	std::sort(W.begin(),W.end());
	std::sort(C.begin(),C.end());
	ll t=0;
	for(int i=0;i<N;i++) {
		auto it=CC.lower_bound(W[i]);
		if(it!=CC.end())
		{
			t++;
			CC.erase(it);
		}
	}
	return t;
}
#include <bits/stdc++.h>

long long BB;
int N;
std::set<std::pair<int,int>> S;
std::vector<int> CC;

void Init(long long B, std::vector<int> C){
	N = C.size();
	BB = B;
	CC=C;
	std::sort(CC.begin(),CC.end());
	for(int i=0;i<N;i++) S.insert({C[i],i});
}

int Maid(int W){
	int ret;
	auto it=S.lower_bound(std::make_pair(W,-1));
	if(BB<N && W>CC[BB] || it==S.end()) return -1;
	ret=it->second;
	S.erase(it);
	return ret;
}

Compilation message

king.cpp: In function 'long long int SendInfo(std::vector<int>, std::vector<int>)':
king.cpp:8:2: error: 'll' was not declared in this scope
  ll t=0;
  ^~
king.cpp:13:4: error: 't' was not declared in this scope
    t++;
    ^
king.cpp:13:4: note: suggested alternative: 'it'
    t++;
    ^
    it
king.cpp:17:9: error: 't' was not declared in this scope
  return t;
         ^

vassal.cpp: In function 'int Maid(int)':
vassal.cpp:19:10: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  if(BB<N && W>CC[BB] || it==S.end()) return -1;