Submission #149041

# Submission time Handle Problem Language Result Execution time Memory
149041 2019-09-01T05:37:54 Z White Fairy(#3613, wifi) King of Chairs (FXCUP4_chairs) C++17
0 / 100
62 ms 5952 KB
#include "king.h"

long long SendInfo(std::vector<int> W, std::vector<int> C) {
	int N = W.size();
	return 0;
}
#include "vassal.h"

#include <bits/stdc++.h>

using namespace std;


set<pair<int, int>> st;
void Init(long long B, std::vector<int> C){
	int N = C.size();
  for (int i = 0; i < N; ++i) {
    st.insert(make_pair(-C[i], i));
  }
}

int Maid(int W){
  auto it = st.lower_bound(make_pair(-W, -1));
  if (it == st.end())
  	return -1;
  int ret = it->second;
  st.erase(it);
  return ret;
}

Compilation message

king.cpp: In function 'long long int SendInfo(std::vector<int>, std::vector<int>)':
king.cpp:4:6: warning: unused variable 'N' [-Wunused-variable]
  int N = W.size();
      ^
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 1060 KB Wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 56 ms 5952 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 62 ms 5444 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -