Skip to content

Commit 28bc324

Browse files
committed
practice
1 parent cee1558 commit 28bc324

File tree

15 files changed

+282
-0
lines changed

15 files changed

+282
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Contain file of my [competitive programming](https://en.wikipedia.org/wiki/Compe
44
- [Codechef](https://www.codechef.com/)
55
- [Hackerrank](https://www.hackerrank.com/)
66
- [Hackerearth](https://www.hackerearth.com/)
7+
- [Atcoder](https://atcoder.jp/home)
78
- [CSES](https://cses.fi/problemset/)
89
- [Facebook hacker cup](https://www.facebook.com/codingcompetitions/hacker-cup)
910

+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
/*
2+
written by Pankaj Kumar.
3+
country:-INDIA
4+
*/
5+
#include <bits/stdc++.h>
6+
#include <ext/pb_ds/assoc_container.hpp>
7+
#include <ext/pb_ds/tree_policy.hpp>
8+
using namespace std;
9+
using namespace __gnu_pbds;
10+
typedef long long ll ;
11+
typedef vector<ll> vl;
12+
#define speed cin.tie(0);cout.tie(0);ios_base::sync_with_stdio(0);
13+
// define values.
14+
// #define mod 1000000007
15+
#define phi 1.618
16+
/* Abbrevations */
17+
#define ff first
18+
#define ss second
19+
#define mp make_pair
20+
#define line cout<<endl;
21+
#define pb push_back
22+
#define Endl "\n"
23+
// loops
24+
#define forin(arr,n) for(ll i=0;i<n;i++) cin>>arr[i];
25+
// Some print
26+
#define no cout<<"NO"<<endl;
27+
#define yes cout<<"YES"<<endl;
28+
// sort
29+
#define all(V) (V).begin(),(V).end()
30+
#define srt(V) sort(all(V))
31+
#define srtGreat(V) sort(all(V),greater<ll>())
32+
#define printv(v) for(ll i=0;i<ll(v.size());i++){cout<<v[i]<<" ";} line;
33+
// some extra
34+
#define sz(V) ll(V.size())
35+
/* ONLINE JUDGE */
36+
// #ifdef ONLINE_JUDGE
37+
// freopen("input.txt", "r", stdin);freopen("output.txt", "w", stdout);
38+
// #endif
39+
// template
40+
template <typename T>
41+
T mymax(T x,T y)
42+
{
43+
return (x>y)?x:y;
44+
}
45+
// function
46+
47+
ll power(ll x,ll y,ll mod)
48+
{
49+
ll res=1;
50+
// x=x%mod;
51+
while(y>0)
52+
{
53+
if(y%2==1)
54+
{
55+
res*=x;
56+
// res=res%mod;
57+
}
58+
y/=2; x*=x; // x=x%mod;
59+
}
60+
return res;
61+
}
62+
ll str_to_num(string s)
63+
{
64+
return stoi(s);
65+
}
66+
67+
string num_to_str(ll num)
68+
{
69+
return to_string(num);
70+
}
71+
// datatype definination
72+
#define ordered_set tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>
73+
74+
/* ascii value
75+
A=65,Z=90,a=97,z=122
76+
*/
77+
/* -----------------------------------------------------------------------------------*/
78+
79+
ll solve()
80+
{
81+
string s;
82+
cin>>s;
83+
ll n=sz(s);
84+
if(n&1)
85+
{
86+
cout<<-1<<endl;
87+
return 0;
88+
}
89+
ll one=0,zero=0;
90+
for(auto x:s)
91+
{
92+
if(x=='0')
93+
zero++;
94+
else
95+
one++;
96+
}
97+
if(zero==n||one==n)
98+
{
99+
cout<<-1<<endl;
100+
return 0;
101+
}
102+
cout<<abs(one-zero)/2<<endl;
103+
return 0;
104+
}
105+
106+
int main()
107+
{
108+
speed;
109+
// freopen("input.txt","r",stdin);
110+
// freopen("output.txt","w",stdout);
111+
ll TestCase=1;
112+
cin>>TestCase;
113+
while(TestCase--)
114+
{
115+
solve();
116+
}
117+
}
118+
119+
/* stuff you should look before submission
120+
* int overflow
121+
* special test case (n=0||n=1||n=2)
122+
* don't get stuck on one approach if you get wrong answer
123+
*/

codechef/Div1/CookOff/COOK125A/a.out

35.1 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

codechef/practice/WASHHAND.cpp

+158
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
/*
2+
written by Pankaj Kumar.
3+
country:-INDIA
4+
*/
5+
#include <bits/stdc++.h>
6+
#include <ext/pb_ds/assoc_container.hpp>
7+
#include <ext/pb_ds/tree_policy.hpp>
8+
using namespace std;
9+
using namespace __gnu_pbds;
10+
typedef long long ll ;
11+
typedef vector<ll> vl;
12+
#define speed cin.tie(0);cout.tie(0);ios_base::sync_with_stdio(0);
13+
// define values.
14+
// #define mod 1000000007
15+
#define phi 1.618
16+
/* Abbrevations */
17+
#define ff first
18+
#define ss second
19+
#define mp make_pair
20+
#define line cout<<endl;
21+
#define pb push_back
22+
#define Endl "\n"
23+
// loops
24+
#define forin(arr,n) for(ll i=0;i<n;i++) cin>>arr[i];
25+
// Some print
26+
#define no cout<<"NO"<<endl;
27+
#define yes cout<<"YES"<<endl;
28+
// sort
29+
#define all(V) (V).begin(),(V).end()
30+
#define srt(V) sort(all(V))
31+
#define srtGreat(V) sort(all(V),greater<ll>())
32+
#define printv(v) for(ll i=0;i<ll(v.size());i++){cout<<v[i]<<" ";} line;
33+
// some extra
34+
#define sz(V) ll(V.size())
35+
/* ONLINE JUDGE */
36+
// #ifdef ONLINE_JUDGE
37+
// freopen("input.txt", "r", stdin);freopen("output.txt", "w", stdout);
38+
// #endif
39+
// template
40+
template <typename T>
41+
T mymax(T x,T y)
42+
{
43+
return (x>y)?x:y;
44+
}
45+
// function
46+
47+
ll power(ll x,ll y,ll mod)
48+
{
49+
ll res=1;
50+
// x=x%mod;
51+
while(y>0)
52+
{
53+
if(y%2==1)
54+
{
55+
res*=x;
56+
// res=res%mod;
57+
}
58+
y/=2; x*=x; // x=x%mod;
59+
}
60+
return res;
61+
}
62+
ll str_to_num(string s)
63+
{
64+
return stoi(s);
65+
}
66+
67+
string num_to_str(ll num)
68+
{
69+
return to_string(num);
70+
}
71+
// datatype definination
72+
#define ordered_set tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>
73+
74+
/* ascii value
75+
A=65,Z=90,a=97,z=122
76+
*/
77+
/* -----------------------------------------------------------------------------------*/
78+
79+
ll solve()
80+
{
81+
ll n,d;
82+
string s;
83+
cin>>n>>s>>d;
84+
vl v;
85+
vector<ll>::iterator it;
86+
ll b[n];
87+
for(ll i=0;i<n;i++)
88+
b[i]=1000000;
89+
for(ll i=0;i<d;i++)
90+
{
91+
ll p;
92+
cin>>p;
93+
b[p-1]=i+1;
94+
}
95+
if(s[0]=='1'&&s[1]=='0')
96+
v.pb(0);
97+
for(ll i=1;i<n-1;i++)
98+
{
99+
if(s[i]=='1'&&(s[i-1]=='0'||s[i+1]=='0'))
100+
v.pb(i);
101+
}
102+
if(s[n-1]=='1'&&s[n-2]=='0')
103+
v.pb(n-1);
104+
v.pb(-1);
105+
for(ll i=1;i<=d;i++)
106+
{
107+
if(v[0]==-1)
108+
break;
109+
else
110+
{
111+
while(v[0]!=-1)
112+
{
113+
if(s[v[0]-1]=='0'&&b[v[0]]>i&&v[0]>0)
114+
{
115+
s[v[0]-1]='1';
116+
v.pb(v[0]-1);
117+
}
118+
if(s[v[0]+1]=='0' && b[v[0]+1]>i && v[0]<n-1)
119+
{
120+
s[v[0]+1]='1';
121+
v.push_back(v[0]+1);
122+
}
123+
it = v.begin();
124+
v.erase(it);
125+
}
126+
v.push_back(-1);
127+
it = v.begin();
128+
v.erase(it);
129+
}
130+
}
131+
ll ans=0;
132+
for(ll i=0;i<n;i++)
133+
{
134+
if(s[i]=='1')
135+
ans++;
136+
}
137+
cout<<ans<<endl;
138+
return 0;
139+
}
140+
141+
int main()
142+
{
143+
speed;
144+
// freopen("input.txt","r",stdin);
145+
// freopen("output.txt","w",stdout);
146+
ll TestCase=1;
147+
cin>>TestCase;
148+
while(TestCase--)
149+
{
150+
solve();
151+
}
152+
}
153+
154+
/* stuff you should look before submission
155+
* int overflow
156+
* special test case (n=0||n=1||n=2)
157+
* don't get stuck on one approach if you get wrong answer
158+
*/

codechef/practice/a.out

67 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)