QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#553243 | #9241. Sphinx | JohnAlfnov# | Compile Error | / | / | C++14 | 512b | 2024-09-08 11:08:41 | 2024-09-08 11:08:41 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#ifdef ONLINE_JUDGE
#include "sphinx.h"
#endif
#ifndef ONLINE_JUDGE
int perform_experiment(vector<int>E){
return 0;
}
#endif
vector<int>find_colours(int N,vector<int>X,vector<int>Y){
vector<int>C(N),G(N);
if(N<=50){
for(int i=0;i<N;++i){
for(int j=0;j<N;++j){
for(int k=0;k<N;++k)C[k]=(k==i?-1:j);
int a=perform_experiment(C);
if(a==2)G[i]=j;
}
}
}
return G;
}
#ifndef ONLINE_JUDGE
int main(){
return 0;
}
#endif
詳細信息
implementer.cpp: In function ‘int {anonymous}::sz(const C&)’: implementer.cpp:26:52: error: ‘size’ is not a member of ‘std’; did you mean ‘size_t’? 26 | template<class C> int sz(const C& c) { return std::size(c); } | ^~~~ | size_t