QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#368182 | #2838. 2D Geometry | hshshs# | WA | 0ms | 3544kb | C++14 | 1.3kb | 2024-03-26 21:36:51 | 2024-03-26 21:36:51 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n ;
void solve() {
vector<pair<int, int>> p(n + 1);
for (int i = 1; i <= n; ++i)
{
int x, y;
cin >> x >> y;
p[i] = make_pair(x, y);
}
int tmp = 0;
for (int kase = 0; kase < 60; kase++) {
auto get = [&]() {
return (rand() << 15 | rand()) % (n-1) + 1;
};
int u = get();
int v = u + 1;
// cout << u << ' ' << v << '\n';
// pair<int, int> line = [&](int u, int v) -> pair<int, int>{
// return make_pair(p[u].first - p[v].first, p[u].second - p[v].second);
// };
auto dot = [](int x1, int y1, int x2, int y2) {
return x1 * y2 - x2 * y1;
};
auto online = [&](int u, int v, int w) -> bool {
return 0 == dot(p[u].first - p[v].first, p[u].second - p[v].second, p[u].first - p[w].first, p[u].second - p[w].second);
};
int res = 0;
for (int i = 1; i <= n; ++i) {
if (online(u, v, i)) res++;
}
tmp = max(tmp, res);
}
// cout << tmp << '\n';
if (tmp >= 2 * (n - tmp)) {
cout << tmp - 2 * (n - tmp) << '\n';
} else {
cout << n % 3 << '\n';
}
}
signed main() {
// freopen("1.in", "r", stdin);
ios::sync_with_stdio(false);
while (cin >> n) {
if(n<3){
cout << n << '\n';
} else
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3544kb
input:
3 0 0 0 1 0 2 3 0 0 0 1 1 0 6 0 0 0 1 0 2 0 3 1 1 1 2
output:
3 3 6
result:
wrong answer 2nd lines differ - expected: '0', found: '3'