Submission #149219

#TimeUsernameProblemLanguageResultExecution timeMemory
149219Avengers (#200)King of Chairs (FXCUP4_chairs)C++17
87 / 100
154 ms10444 KiB
#include <bits/stdc++.h> #define fr(i, n, m) for(int i = (n); i < (m); i ++) #define pb push_back #define st first #define nd second #define all(x) begin(x),end(x); using namespace std; typedef long long ll; #include "king.h" long long SendInfo(std::vector<int> W, std::vector<int> C) { int N = W.size(); return W[0]*100 + W[1]*10 + W[2]*1; }
#include <bits/stdc++.h> #define fr(i, n, m) for(int i = (n); i < (m); i ++) #define pb push_back #define st first #define nd second #define all(x) begin(x),end(x); using namespace std; typedef long long ll; /*#include "king.h" long long SendInfo(std::vector<int> W, std::vector<int> C) { int N = W.size(); return W[0]*100 + W[1]*10 + W[2]*1; } */ #include "vassal.h" long long BB; set<pair<int,int> > s; void Init(long long B, std::vector<int> C){ int N = C.size(); fr(i, 0, N) s.insert({C[i], i}); BB = B; // ToDo } int Maid(int W){ auto u = s.lower_bound({W, 1e5}); if(u == s.end()) return -1; s.erase(u); return u->nd; }

Compilation message (stderr)

king.cpp: In function 'long long int SendInfo(std::vector<int>, std::vector<int>)':
king.cpp:13:6: warning: unused variable 'N' [-Wunused-variable]
  int N = W.size();
      ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...