Skip to content

Commit 91e19ce

Browse files
committed
codejam practice question
1 parent b0158df commit 91e19ce

File tree

79 files changed

+148
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

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

README.md

+2-1

0 commit comments

Comments
 (0)