Task: | Line Segment Intersection |
Sender: | louaha1 |
Submission time: | 2024-11-12 10:48:14 +0200 |
Language: | Python3 (PyPy3) |
Status: | READY |
Result: | ACCEPTED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.50 s | details |
#2 | ACCEPTED | 0.36 s | details |
#3 | ACCEPTED | 0.37 s | details |
#4 | ACCEPTED | 0.41 s | details |
#5 | ACCEPTED | 0.04 s | details |
#6 | ACCEPTED | 0.04 s | details |
Code
import sys input = sys.stdin.read def on_segment(x1, y1, x2, y2, x3, y3): return min(x1, x2) <= x3 <= max(x1, x2) and min(y1, y2) <= y3 <= max(y1, y2) def orientation(x1, y1, x2, y2, x3, y3): val = (y2 - y1) * (x3 - x2) - (x2 - x1) * (y3 - y2) if val == 0: return 0 return 1 if val > 0 else 2 def intersect(x1, y1, x2, y2, x3, y3, x4, y4): o1 = orientation(x1, y1, x2, y2, x3, y3) o2 = orientation(x1, y1, x2, y2, x4, y4) o3 = orientation(x3, y3, x4, y4, x1, y1) o4 = orientation(x3, y3, x4, y4, x2, y2) if o1 != o2 and o3 != o4: return True if o1 == 0 and on_segment(x1, y1, x2, y2, x3, y3): return True if o2 == 0 and on_segment(x1, y1, x2, y2, x4, y4): return True if o3 == 0 and on_segment(x3, y3, x4, y4, x1, y1): return True if o4 == 0 and on_segment(x3, y3, x4, y4, x2, y2): return True return False def solve(): data = input().split() t = int(data[0]) index = 1 results = [] for _ in range(t): x1, y1, x2, y2, x3, y3, x4, y4 = map(int, data[index:index+8]) index += 8 results.append("YES" if intersect(x1, y1, x2, y2, x3, y3, x4, y4) else "NO") sys.stdout.write("\n".join(results) + "\n") solve()
Test details
Test 1
Verdict: ACCEPTED
input |
---|
100000 9 7 1 8 8 -5 0 2 10 1 -1 2 -4 1 -7 3 10 2 -8 6 1 2 2 -1 -10 1 9 -7 4 -3 -5 0 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
NO NO NO NO NO ... |
Test 2
Verdict: ACCEPTED
input |
---|
100000 81 745 -967 768 -451 -490 -454... |
correct output |
---|
NO NO YES NO YES ... |
user output |
---|
NO NO YES NO YES ... |
Test 3
Verdict: ACCEPTED
input |
---|
100000 492853 -452834 -657156 -282543... |
correct output |
---|
YES YES NO YES YES ... |
user output |
---|
YES YES NO YES YES ... |
Test 4
Verdict: ACCEPTED
input |
---|
100000 788522666 939776556 -831492125... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
NO NO NO NO NO ... |
Test 5
Verdict: ACCEPTED
input |
---|
1 1 6 6 6 4 4 1000000000 1000000... |
correct output |
---|
YES |
user output |
---|
YES |
Test 6
Verdict: ACCEPTED
input |
---|
1 -1000000000 1000000000 9999999... |
correct output |
---|
NO |
user output |
---|
NO |