1033A - King Escape - CodeForces Solution


dfs and similar graphs implementation *1000

Please click on ads to support us..

Python Code:

'''
Don't Copy This Code, CopyRight . [email protected] © 2022-2023 :)
'''

import sys, threading
sys.setrecursionlimit(2147483647)
input = sys.stdin.readline
def print(*args, end='\n', sep=' ') -> None:
    sys.stdout.write(sep.join(map(str, args)) + end)

def Solve():
    n = int(input())
    ax, ay = list(map(int, input().split()))
    bx, by = list(map(int, input().split()))
    cx, cy = list(map(int, input().split()))

    if bx < ax and by < ay:
        if cx > ax or cy > ay:
            print("NO")
        else:
            print("YES")
    elif bx < ax and by > ay:
        if cx > ax or cy < ay:
            print("NO")
        else:
            print("YES")
    elif bx > ax and by < ay:
        if cx < ax or cy > ay:
            print("NO")
        else:
            print("YES")
    else:
        if cx < ax or cy < ay:
            print("NO")
        else:
            print("YES")


if(__name__ == "__main__"):
    threading.stack_size(10**8)
    threading.Thread(target=Solve).start()

C++ Code:

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;
    cin>>n;
    int ax, ay;
    cin>>ax>>ay;
    ax--;
    ay--;
    int bx, by;
    cin>>bx>>by;
    bx--;
    by--;
    int cx, cy;
    cin>>cx>>cy;
    cx--;
    cy--;
    int x=ax-bx, y=ay-by, z=ax-cx, w=ay-cy;
    if (x*z>0&&y*w>0){
        cout<<"YES";
    }
    else{
        cout<<"NO";
    }
return 0;
}


Comments

Submit
0 Comments
More Questions

545B - Equidistant String
1244C - The Football Season
1696B - NIT Destroys the Universe
1674A - Number Transformation
1244E - Minimizing Difference
1688A - Cirno's Perfect Bitmasks Classroom
219A - k-String
952A - Quirky Quantifiers
451B - Sort the Array
1505H - L BREAK into program
171E - MYSTERIOUS LANGUAGE
630D - Hexagons
1690D - Black and White Stripe
1688D - The Enchanted Forest
1674C - Infinite Replacement
712A - Memory and Crow
1676C - Most Similar Words
1681A - Game with Cards
151C - Win or Freeze
1585A - Life of a Flower
1662A - Organizing SWERC
466C - Number of Ways
1146A - Love "A"
1618D - Array and Operations
1255A - Changing Volume
1710C - XOR Triangle
415C - Mashmokh and Numbers
8A - Train and Peter
591A - Wizards' Duel
1703G - Good Key Bad Key