QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#460172 | #5531. ICC | fryan | Compile Error | / | / | C++20 | 1.4kb | 2024-07-01 04:16:48 | 2024-07-01 04:29:09 |
Judging History
你现在查看的是最新测评结果
- [2024-07-01 04:29:09]
- 管理员手动重测本题所有提交记录
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-07-01 04:16:49]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-07-01 04:16:48]
- 提交
answer
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <complex>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <vector>
//#include "icc.h"
using namespace std;
#define all(x) begin(x), end(x)
#define sz(x) (int) (x).size()
vector<int> gen(int cyc, int len) {
vector<int> res; res.resize(len);
for (int b = 0; b < len; b += cyc) {
for (int i = b; i < min(len, b+cyc); i++) {
res[i] = (b/cyc)%2;
}
}
return res;
}
const int mxn = 1e2;
int aux1[mxn], aux2[mxn];
int send_query(vector<int> &a, vector<int> &b) {
for (int i = 0; i < sz(a); i++) {
aux1[i] = a[i];
}
for (int i = 0; i < sz(b); i++) {
aux2[i] = b[i];
}
return query(sz(a), sz(b), aux1, aux2);
}
array<int,2> get_edge(vector<int> &a, vector<int> &b) {
if (sz(a) == 1 && sz(b) == 1) {
return {a[0], b[0]};
}
if (sz(a) < sz(b)) swap(a,b);
vector<int> ra; ra.resize((sz(a)+1)/2);
for (int i = 0; i < (sz(a)+1)/2; i++) {
ra[i] = a[i];
}
}
void run(int n) {
vector<int> t1 = {1};
vector<int> t2 = {2};
cout << query(t1,t2) << "\n";
}
signed main() {
return 0;
}
详细
answer.code: In function ‘int send_query(std::vector<int>&, std::vector<int>&)’: answer.code:49:16: error: ‘query’ was not declared in this scope 49 | return query(sz(a), sz(b), aux1, aux2); | ^~~~~ answer.code: In function ‘void run(int)’: answer.code:68:17: error: ‘query’ was not declared in this scope 68 | cout << query(t1,t2) << "\n"; | ^~~~~ answer.code: In function ‘std::array<int, 2> get_edge(std::vector<int>&, std::vector<int>&)’: answer.code:63:1: warning: control reaches end of non-void function [-Wreturn-type] 63 | } | ^