QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#460174 | #5531. ICC | fryan | 0 | 1ms | 4248kb | C++20 | 1.4kb | 2024-07-01 04:17:28 | 2024-07-01 04:29:11 |
Judging History
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 << send_query(t1,t2) << "\n";
}
/*
signed main() {
return 0;
}*/
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 4236kb
input:
1 1500 3 15 0 2 0.0 2.5 0 3.5 0 1 1
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #2:
score: 0
Wrong Answer
Test #3:
score: 0
Wrong Answer
time: 1ms
memory: 4180kb
input:
1 2500 4 50 0 0 0.0 3.5 0 2.5 5 1 1
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #3:
score: 0
Wrong Answer
Test #6:
score: 0
Wrong Answer
time: 1ms
memory: 4248kb
input:
1 2250 6 100 0.05 2.3 0.1 0.7 0 1.5 1.7 1.1 1
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #4:
score: 0
Wrong Answer
Test #10:
score: 0
Wrong Answer
time: 1ms
memory: 4196kb
input:
1 2000 5 100 0.01 1.00 0.10 1.70 0.00 1.50 5.0 1.20 1
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #5:
score: 0
Wrong Answer
Test #14:
score: 0
Wrong Answer
time: 1ms
memory: 4240kb
input:
1 1775 4 100 0.00 0.00 0.00 2.70 0.10 7.55 0.0 1.15 1
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #6:
score: 0
Wrong Answer
Test #20:
score: 0
Wrong Answer
time: 1ms
memory: 4180kb
input:
1 1625 5 100 0.00 0.00 0.00 3.00 0.00 1.00 0.0 3 1
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found