From 6b842c8de61a506ac318321fd05ab5d6ce71e39a Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Sun, 24 Dec 2023 19:20:38 +0600 Subject: [PATCH] added 1909A --- Codes/1909A Distinct Buttons/1909A.cpp | 97 ++++++++++++++++++++++++++ Readme.md | 1 + 2 files changed, 98 insertions(+) create mode 100644 Codes/1909A Distinct Buttons/1909A.cpp diff --git a/Codes/1909A Distinct Buttons/1909A.cpp b/Codes/1909A Distinct Buttons/1909A.cpp new file mode 100644 index 0000000..27969b4 --- /dev/null +++ b/Codes/1909A Distinct Buttons/1909A.cpp @@ -0,0 +1,97 @@ +#include +using namespace std; + +// Short forms +#define int long long +#define ll long long +#define ull unsigned long long +#define endl '\n' +#define ff first +#define ss second +#define pb push_back +#define all(x) x.begin(), x.end() +#define sz(x) (int)(x).size() + +// Outputs +#define yes cout<<"YES"<>= 1; } return ans; } +bool isPrime(ll n) { if(n <= 1) return false; for(ll i = 2; i <= sqrt(n); i++) if(n % i == 0) return false; return true; } + +//Debugging +#ifndef ONLINE_JUDGE +#define dbg(x) cerr << #x <<" "; _print(x); cerr << endl; +#define dbgin(x) cerr << #x <<" "; _print(x); cerr << ";"< void _print(pair p); +template void _print(vector v);template void _print(set v); +template void _print(map v);template void _print(multiset v); +template void _print(pair p) {cerr << "{"; _print(p.first); cerr << ","; _print(p.second); cerr << "}";} +template void _print(vector v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(set v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(multiset v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(unordered_set v) {cerr<<"[ "; for(T i : v) {_print(i); cerr<<" ";} cerr<<"]";} +template void _print(map v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(multimap v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} +template void _print(unordered_map v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} + +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +void solve() +{ + int n; + cin>>n; + setst; + int possible = 1; + for(int i=0; i>p>>q; + if(p>0) + st.insert('r'); + else if(p<0) + st.insert('l'); + if(q>0) + st.insert('u'); + else if(q<0) + st.insert('d'); + if(st.size()==4) + possible = 0; + } + if(possible) + yes; + else + no; +} + +int32_t main() +{ + FAST_IO; + int TC = 1; + cin >> TC; + while (TC--) solve(); +} \ No newline at end of file diff --git a/Readme.md b/Readme.md index 1652c3a..cb8a4e6 100644 --- a/Readme.md +++ b/Readme.md @@ -210,6 +210,7 @@ This repository contains my solutions of Codeforces problems. They are in C++ la | 1907A | Rook | [Question](https://codeforces.com/problemset/problem/1907/A) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907A%20Rook) | 1907B | YetnotherrokenKeoard | [Question](https://codeforces.com/problemset/problem/1907/B) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907B%20YetnotherrokenKeoard) | 1907C | Removal of Unattractive Pairs | [Question](https://codeforces.com/problemset/problem/1907/C) | [Solution](https://github.com/ShazidMashrafi/Codeforces-Solutions/tree/master/Codes/1907C%20Removal%20of%20Unattractive%20Pairs) +| 1909A | Distinct Buttons | [Question](https://codeforces.com/problemset/problem/1909/A) | [Solution] | 1912L | LOL Lovers | [Question](https://codeforces.com/problemset/problem/1912/L) | [Solution] | 1913A | Rating Increase | [Question](https://codeforces.com/problemset/problem/1913/A) | [Solution] | 1913B | Swap and Delete | [Question](https://codeforces.com/problemset/problem/1913/B) | [Solution]