QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#639353 | #5426. Drain the Water Tank | nnk | WA | 0ms | 3852kb | C++20 | 1.8kb | 2024-10-13 19:07:31 | 2024-10-13 19:07:31 |
Judging History
answer
#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
#include<iomanip>
#include<queue>
#include<math.h>
#include<map>
#include<bitset>
#include<numeric>
#include <cstring>
#include<array>
#include <string>
#include<unordered_set>
using namespace std;
#define int long long
#define endl "\n"
#define mod 1000000007ll
#define IOS ios::sync_with_stdio(false),cin.tie(nullptr)
#define syy return
const double pi = acos(-1.0);
using ll = long long;
using pii = pair<int, int>;
using vint = vector<int>;
using vll = vector<ll>;
using vvint = vector<vint>;
using vpo = vector<pii>;
using tup = tuple<int, int, int>;
using vbl = vector<bool>;
constexpr int N = 500005, M = 2000006;//开足够的空间 注意无向图的双向边边数*2
constexpr ll inf = 3e18 + 5000;
long long cross(long long x1, long long y1, long long x2, long long y2) {
return x1 * y2 - x2 * y1;
}
void slove() {
int n; cin >> n;
vpo a(n);
vpo b;
for (auto& [x, y] : a)cin >> x >> y;
for (int i = 0; i < n; i++) {
int j = (i - 1 + n) % n;
int k = (i + 1) % n;
auto [x1, y1] = a[i];
auto [x0, y0] = a[j];
auto [x2, y2] = a[k];
if ((x0 == x1 and x1 == x2) or (y1 == y0 and y1 == y2))
{
continue;
}
b.push_back(a[i]);
}
n = b.size();
//cout << n << endl;
int ans = 0;
for (int i = 0; i < n; i++) {
int j = (i - 1 + n) % n;
int k = (i + 1) % n;
int z = (i + 2) % n;
auto [x0, y0] = b[j];
auto [x1, y1] = b[i];
auto [x2, y2] = b[k];
auto [x3, y3] = b[z];
if (y1 == y2 and y1 < y0 and y1 < y3 and x3>=x1 and n>=4) { ++ans; }
else if (y0>y1 and y1< y2 and cross(x1 - x0, y1 - y0, x2 - x1, y2-y1) > 0) ans++;
}
cout << ans << endl;
}
signed main()
{
IOS;
int T = 1;
//cin >> T;
while (T--) {
slove();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3600kb
input:
6 0 0 1 1 2 1 3 0 3 2 0 2
output:
2
result:
ok 1 number(s): "2"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
8 4 4 0 4 0 2 1 2 2 2 2 0 3 0 4 0
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
7 1 0 3 4 0 3 1 2 2 3 1 1 0 2
output:
2
result:
ok 1 number(s): "2"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
6 0 0 2 0 1 1 4 1 5 0 3 4
output:
2
result:
ok 1 number(s): "2"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
8 0 0 1 0 3 -1 3 0 1 1 4 1 5 0 3 4
output:
2
result:
ok 1 number(s): "2"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
5 0 0 170 0 140 30 60 30 0 70
output:
1
result:
ok 1 number(s): "1"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
5 0 0 170 0 140 30 60 30 0 100
output:
1
result:
ok 1 number(s): "1"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
5 0 0 1 2 1 5 0 2 0 1
output:
1
result:
ok 1 number(s): "1"
Test #9:
score: -100
Wrong Answer
time: 0ms
memory: 3556kb
input:
3 0 0 100 0 0 100
output:
0
result:
wrong answer 1st numbers differ - expected: '1', found: '0'