#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define in(x) freopen(x, "r", stdin)
#define out(x) freopen(x, "w", stdout)
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("-O3")
#define F first
#define S second
#define pb push_back
#define N +100500
#define M ll(1e9 + 7)
#define sz(x) (int)x.size()
#define re return
#define oo ll(1e18)
#define el '\n'
using namespace std;
//using namespace __gnu_pbds;
//typedef tree <int, null_type, less_equal <int> , rb_tree_tag, tree_order_statistics_node_update> ordered_set;
typedef long long ll;
typedef long double ld;
int xr[N], xl[N], yl[N], yr[N], lx, ly, i, j, n, ans[N], sf[N], sf1[N];
int main()
{
srand(time(0));
ios_base::sync_with_stdio(0);
iostream::sync_with_stdio(0);
ios::sync_with_stdio(0);
cin.tie(NULL);
cout.tie(NULL);
// in("input.txt");
// out("output.txt");
cin >> n;
for (i = 1; i <= n; i++)
{
cin >> xl[i] >> yl[i] >> lx >> ly;
xr[i] = xl[i] + lx;
yr[i] = yl[i] + ly;
}
ans[n] = 1;
sf[n] = xr[n];
sf1[n] = yr[n];
for (i = n - 1; i >= 1; i--) sf[i] = max(sf[i + 1], xr[i]);
for (i = n - 1; i >= 1; i--) sf1[i] = max(sf1[i + 1], yr[i]);
for (i = 1; i <= n; i++)
{
if (min(xr[i], sf[i + 1]) <= xl[i]) {ans[i] = 1;continue;}
if (min(yr[i], sf1[i + 1]) <= yl[i]) {ans[i] = 1;continue;}
for (j = i + 1; j <= n; j++)
{
if (min(xr[i], xr[j]) > max(xl[i], xl[j]) &&
min(yr[i], yr[j]) > max(yl[i], yl[j])) {ans[i] = 0;break;}
ans[i] = 1;
}
}
for (i = 1; i <= n; i++) cout << (ans[i] ? "DA" : "NE") << el;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
512 KB |
Output is correct |
2 |
Correct |
36 ms |
632 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
41 ms |
768 KB |
Output is correct |
2 |
Correct |
1212 ms |
2304 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
1020 KB |
Output is correct |
2 |
Correct |
1888 ms |
2096 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
120 ms |
1400 KB |
Output is correct |
2 |
Correct |
1351 ms |
1824 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
710 ms |
1944 KB |
Output is correct |
2 |
Correct |
1964 ms |
2168 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
509 ms |
1912 KB |
Output is correct |
2 |
Correct |
1541 ms |
2168 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1591 ms |
1912 KB |
Output is correct |
2 |
Correct |
106 ms |
2424 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3488 ms |
2688 KB |
Output is correct |
2 |
Correct |
279 ms |
1912 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2184 ms |
2936 KB |
Output is correct |
2 |
Correct |
3573 ms |
3004 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2320 ms |
3460 KB |
Output is correct |
2 |
Execution timed out |
4077 ms |
3156 KB |
Time limit exceeded |