Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add : Codeforces Contest Solutions Added #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions Codeforces Round 713 (Div. 3)/A - Spy Detected.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
// ** Sumonta Saha Mridul ** SWE - SUST
/*

* ###### ## ## ## ## ####### ## ## ######## ###
! ## ## ## ## ### ### ## ## ### ## ## ## ##
? ## ## ## #### #### ## ## #### ## ## ## ##
* ###### ## ## ## ### ## ## ## ## ## ## ## ## ##
! ## ## ## ## ## ## ## ## #### ## #########
? ## ## ## ## ## ## ## ## ## ### ## ## ##
* ###### ####### ## ## ####### ## ## ## ## ##

*/
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define ull unsigned long long
#define pb push_back
#define pii pair<int, int>
#define pll pair<long, long>
#define mp(a, b) make_pair(a, b)
#define vi vector<int>
#define vll vector<ll>
#define vii vector<pii>
#define Mi map<int, int>
#define mii map<pii, int>
#define all(a) (a).begin(), (a).end()
#define f first
#define s second
#define lb lower_bound
#define ub upper_bound
#define sz(x) (int)x.size()
#define endl '\n'

#define F(i, s, e) for (ll i = s; i < e; ++i)
#define rep(i, a, b) for (int i = a; i < b; i++)
#define rem(i, a, b) for (int i = a; i > b; i--)
#define P(str) cout << str << endl

#define fast \
ios_base::sync_with_stdio(false); \
cin.tie(NULL); \
cout.tie(NULL)

#define mod 1000000007
#define INF numeric_limits<ll>::max();
#define NINF numeric_limits<ll>::min();
const int N = int(1e5 + 3);

int main()
{
fast;
int t;
cin >> t;

while (t--)
{
int n;
cin >> n;

int a, key1 = 1;
cin >> a;

int a1 = 1, key2 = 0, a2 = 0;

for (int i = 2; i <= n; i++)
{

int x;
cin >> x;

if (x == a)
{
key1 = i;
a1++;
}

else
{
key2 = i;
a2++;
}
}

if (a2 > a1)
cout << key1 << endl;
else
cout << key2 << endl;
}
}
135 changes: 135 additions & 0 deletions Codeforces Round 713 (Div. 3)/B - Almost Rectangle.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
// ** Sumonta Saha Mridul ** SWE - SUST
/*

* ###### ## ## ## ## ####### ## ## ######## ###
! ## ## ## ## ### ### ## ## ### ## ## ## ##
? ## ## ## #### #### ## ## #### ## ## ## ##
* ###### ## ## ## ### ## ## ## ## ## ## ## ## ##
! ## ## ## ## ## ## ## ## #### ## #########
? ## ## ## ## ## ## ## ## ## ### ## ## ##
* ###### ####### ## ## ####### ## ## ## ## ##

*/
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define ull unsigned long long
#define pb push_back
#define pii pair<int, int>
#define pll pair<long, long>
#define mp(a, b) make_pair(a, b)
#define vi vector<int>
#define vll vector<ll>
#define vii vector<pii>
#define Mi map<int, int>
#define mii map<pii, int>
#define all(a) (a).begin(), (a).end()
#define f first
#define s second
#define lb lower_bound
#define ub upper_bound
#define sz(x) (int)x.size()
#define endl '\n'

#define F(i, s, e) for (ll i = s; i < e; ++i)
#define rep(i, a, b) for (int i = a; i < b; i++)
#define rem(i, a, b) for (int i = a; i > b; i--)
#define P(str) cout << str << endl

#define fast \
ios_base::sync_with_stdio(false); \
cin.tie(NULL); \
cout.tie(NULL)

#define mod 1000000007
#define INF numeric_limits<ll>::max();
#define NINF numeric_limits<ll>::min();
const int N = int(1e5 + 3);

int main()
{
fast;

int t;
cin >> t;

while (t--)
{
int n;
cin >> n;

int a = 0, b = 0, c = 0, d = 0;
int p = 0;

char ans[n][n];

for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> ans[i][j];

if (ans[i][j] == '*')
{
if (p == 0)
{
a = i;
b = j;
p = 1;
}

else
{
c = i;
d = j;
}
}
}
}

if (b == d)
{
if (b == 0)
{
ans[a][b+1] = '*';
ans[c][d+1] = '*';
}
else
{
ans[a][b-1] = '*';
ans[c][d-1] = '*';
}
}

if(a == c)
{
if (a == 0)
{
ans[a+1][b] = '*';
ans[c+1][d] = '*';
}
else
{
ans[a-1][b] = '*';
ans[c-1][d] = '*';
}

}

else
{
ans[a][d] = '*';
ans[c][b] = '*';
}

for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cout << ans[i][j];
}
cout << endl;
}
}
}
Loading