Dataset Viewer
Auto-converted to Parquet Duplicate
problem
stringlengths
716
12.9k
answer
stringlengths
41
999
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <cstdio> #include <cmath> const double eps=1e-4; const double PI=acos(-1.0); double gcd(double x,double y) { return y>eps? gcd(y,x-floor(x/y)*y):x; } double bcos(double a,double b,double c) { return acos((a*a+b*b-c*c)/(2*a*b)); } int main() { double ax,ay,bx,by,cx,cy; scanf("%lf%lf%lf%lf%lf%l...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <stdio.h> #include <math.h> const double eps=1e-4; const double PI=acos(-1.0); double gcd(double x,double y) { return y>eps? gcd(y,x-floor(x/y)*y):x; } double bcos(double a,double b,double c) { return acos((a*a+b*b-c*c)/(2*a*b)); } int main() { double ax,ay,bx,by,cx,cy; scanf("%lf%lf%lf%lf%l...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<iostream> #include<cmath> #include<cstdio> using namespace std; double xa,ya,xb,yb,xc,yc; double a,b,c,A,B,C,x,y; double length(double x,double y){return x*x+y*y; } double gcd(double a,double b){ return fabs(b)<1E-4?a:gcd(b,fmod(a,b));} int main() { scanf("%lf%lf%lf%lf%lf%lf",&xa,&ya,&xb,&yb,&xc,&yc); y=l...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<cstdio> #include<cmath> #define D double #define S(x) ((x)*(x)) #define G(t) a[t]=x[t]-x[2];b[t]=y[t]-y[2];c[t]=(S(x[t])+S(y[t])-S(x[2])-S(y[2]))/2; #define M(p,q) (p[0]*q[1]-p[1]*q[0]) D g(D a,D b){return fabs(b)<1e-4?a:g(b,fmod(a,b));} D x[3],y[3],a[3],b[2],c[2],A,X,Y; int main() { for(int i=0;i<3;++i)scanf(...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<cstdio> #include<cmath> #define S(x) ((x)*(x)) #define G(t) a[t]=x[t]-x[2];b[t]=y[t]-y[2];c[t]=(S(x[t])+S(y[t])-S(x[2])-S(y[2]))/2; #define M(p,q) (p[0]*q[1]-p[1]*q[0]) double g(double a,double b){return fabs(b)<1e-4?a:g(b,fmod(a,b));} double x[3],y[3],a[3],b[2],c[2],A,X,Y; int main(){ for(int i=0;i<3;++i)...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
n = int(input()) a = list(map(int, input().split())) m = int(input()) b = list(map(int, input().split())) lenth = [0] * m elem = [[] for i in range(m)] for i in range(n): c = 0 p = -1 for j in range(m): if a[i] == b[j] and c + 1 > lenth[j]: lenth[j] = c + 1 elem[j] = (elem[p]...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
def lcis(a, b): n, m = len(a), len(b) dp = [0]*m best_seq, max_len = [], 0 for i in range(n): current = 0 seq = [] for j in range(m): if a[i] == b[j]: f = seq + [a[i]] if len(f) > max_len: ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
n=int(input()) ar=list(map(int,input().split())) m=int(input()) br=list(map(int,input().split())) t=[0]*m A=[[] for i in range(m)] for i in range(n): c=0 p=-1 for j in range(m): if(ar[i]==br[j] and c+1>t[j]): t[j]=c+1 A[j]=(A[p] if p!=-1 else []) +[ar[i]] if(ar[i]>br[...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin >> a >> b >> c; string ans; if(c == 1) { for(int i=0;i<a;i++) cout<<"0"; for(int i=0;i<b;i++) cout << "1"; } else if(a>b) { for(int i=0;i<a-(c-1)/2-(c-1)%2;i++) cout << "0"; for(int i=0;i<b-(c-1)/2;i++) cout << "1"; int tag = ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; #define ll long long #define debug(x) cerr << fixed << #x << " is " << x << endl; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int a, b, x; string s; cin >> a >> b >> x; if(a < b) { for(int i = 1; x != 1; i++, x--) { if(i % 2 == 0) { s +...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i,a,n) for(int i=a;i<n;i++) #define sf(n) scanf("%d",&n) #define pii pair<int,int> #define p2ii pair<pii,int> #define ff first #define ss second int main() { int n,k;sf(n);sf(k);int a[n]; rep(i,0,n)sf(a[i]);int sum[n]; sum[0]=...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <iostream> #include <vector> #include <algorithm> #include <iomanip> using namespace std; int main() { cin.tie(NULL); ios::sync_with_stdio(false); int n, k; cin >> n >> k; vector<int> temper(n); for (auto& i : temper) cin >> i; double avg = 0; for (int dist = k; di...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; double sr,srm; int n,k,a[5009],i,j; int s,smax; int main() { cin>>n>>k; for(i=1;i<=n;i++) cin>>a[i]; for(i=k;i<=n;i++) { smax=0,s=0; for(j=1;j<=i;j++) s+=a[j]; smax=s; for(j=i+1;j<=n;j++) { ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> #define MP make_pair #define PB push_back using namespace std; typedef long long ll; template<typename T> inline T read(T&x){ x=0;int f=0;char ch=getchar(); while (ch<'0'||ch>'9') f|=(ch=='-'),ch=getchar(); while (ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar(); return x=f?-x:x; } const int N...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> #define left lef using namespace std; const int N = 400001; int n,d,k,cnt,left; vector <int> g[N]; vector <pair<int,int> > ans; void go(int node,int levels){ while (g[node].size() < k && left > 0 && levels > 0){ g[node].push_back(cnt); g[cnt].push_back(node); ans.push_back(make_pair(n...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include"bits/stdc++.h" #define endl '\n' #define int long long int #define maxi 100000+5 #define pii pair<int,int> #define stat first #define num second #define mod 1e9+7 using namespace std; signed main(){ int n,k; cin >> n >> k; while(k--){ int a; cin >> a >> a; } int a = 1; ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <algorithm> #include <cmath> #include <cstdio> #include <fstream> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <sstream> #include <string> #include <set> #include <vector> #include <unordered_set> #include <unordered_map> #include <utility> int main() { std::ios_base::...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; #define fast ios_base::sync_with_stdio(false);cin.tie(NULL); int main() { fast; int n,m; cin>>n>>m; int i; for(i=0;i<m;i++) { int l,r; cin>>l>>r; } int p=0; for(int j=0;j<n;j++) { if(p%2==0) cout<...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; #define pb push_back #define ll long long int int main() { ll n,m,i,x,y; cin>>n>>m; for(i=1;i<=m;i++) cin>>x>>y; for(i=1;i<=n;i++) { if(i%2==0) cout<<"1"; else cout<<"0"; } return 0; }
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> #define FF first #define SS second #define PB push_back #define sz(c) int((c).size()) #define all(c) (c).begin(), (c).end() #define endl '\n' using namespace std; typedef long long ll; typedef pair<int, int> ii; typedef vector<bool> vb; typedef vector<int> vi; typedef vector<ll> vll; const ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; int main() { int n,k; cin>>n>>k; vector<int> v; vector<int> temp; for(int i=0; i<n; i++) { int x; cin>>x; v.push_back(x); } temp = v; sort(temp.begin(),temp.end(),greater<int>()); int sum=0; vector<int> maxv; for(int i=0; i<k; i++) { sum+=temp[i]; ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; typedef pair<int, int> ii; bool f(ii a, ii b){ if(a.first==b.first){ return a.second>b.second; } return a.first<b.first; } int main(){ int n, k; cin>>n>>k; pair<int, int> a[n]; for(int i=0;i<n;i++){ cin>>a[i].first; a[i].second = i+1; } sort(a, a+n, f); i...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> #define LL long long using namespace std; LL n,m,a,b,c,x,d; long double sum,ans; inline LL read() { char ch=getchar(); LL f=1,x=0; while (ch<'0' || ch>'9') { if (ch=='-') f=-1; ch=getchar(); } while (ch>='0' && ch<='9') { x=x*10+ch-'0'; ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; int main() { long long n,m; cin >> n >> m; long long sum = 0; for(int i = 1;i <= m;i++) { int d,x; scanf("%d%d",&x,&d); sum += x*n; // cout << sum << endl; if(d >= 0) { sum += (n-1)*n/2*d; } if(d < 0) { if(n % 2 == 1) sum+=d*(n/2)*(n/2+1); ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; typedef long long ll; int read(){ int x=0,w=1; char ch=0; while (ch<'0' || ch>'9'){ if (ch=='-') w=-1; ch=getchar(); } while (ch<='9' && ch>='0'){ x=(x<<1)+(x<<3)+ch-'0'; ch=getchar(); } return x*w; } int n,m; ll ans,t1,t...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #include<iostream> using namespace std; int n,m,p,t; int gcd(int a,int b){return b?gcd(b,a%b):a;} void imp(){ printf("Impossible"); } int main() { t=0; scanf("%d%d",&n,&m); if(m<(n-1)) { imp(); return 0; } if(n<1000) { for(int i...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; #define ll long long int GG(int a,int b) { return b>0?GG(b,a%b):a; } int A[100010],B[100010]; int main() { int n,m; scanf("%d%d",&n,&m); if(m<n-1) { cout<<"Impossible"<<endl; return 0; } int oop=0; for(int i=1; i<=n; i++) { ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <cstdio> #include <cstring> char s[100005]; int n,k,f[200]; int p[200]; int main() { scanf("%s",s); scanf("%d",&k); n=strlen(s); memset(f,0,sizeof(f)); for(int i=0;i<n;i++) f[s[i]]++; memset(p,0,sizeof(p)); int m=n-k; int ans=0; for(int i=0;i<200 &&m>0;i++) { ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; #define N 100000 char s[N+5]; int cnt[256],ind[256]; int k; bool cmp(int x,int y){ return cnt[x]<cnt[y]; } int main(){ scanf("%s%d",s,&k); for(int i=0;s[i];++i)++cnt[s[i]]; for(int i=0;i<256;++i)ind[i]=i; sort(ind,ind+25...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> #include <cstdio> #include <cstring> #include <vector> #include <algorithm> using namespace std; int k, f[26], c[26]; char ch[100010]; pair<int,int> a[26]; int main() { fgets(ch, sizeof(ch), stdin); scanf("%d",&k); int n = strlen(ch); memset(f, 0, sizeof(f)); memset(c, 0, sizeof(c)); for(...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <cstdio> #include <cstring> #include <algorithm> #include <iostream> using namespace std; char str[100005]; int c[26]; pair<int,char> A[26]; int main(){ int k; scanf("%s%d",str,&k); int size=strlen(str); for(char ch='a';ch<='z';ch++) A[ch-'a'].second=ch; for(int i=0;i<size;i++) A[str[i]-'a'].f...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <cmath> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define SG string #define DB double #define LL long long using namespace std; const LL Max=2e5+5; LL N,M,K,Ans[Max]; inline LL Read(){ LL X=0;char CH=getchar();bool F=0; while(CH>'9'||CH<'0'){if(CH=='-')F=1;CH=getchar();} ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int maxn=150; int ans[maxn][maxn]; int a[maxn],b[maxn],c[maxn]; int main() { int n,m; while(~scanf("%d%d",&n,&m)) { int tot=0; for(int i=1;i<=n;i++) { scanf("%d",&a[i]); tot^=a[i]; } for(int i=1;i<=m;i++) { scanf("...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> int N, M; int A[200], B[200]; int main () { std::ios::sync_with_stdio (0); std::cin >> N >> M; for (int i = 0; i < N; ++i) std::cin >> A[i]; for (int i = 0; i < M; ++i) std::cin >> B[i]; int a = 0, b = 0; for (int i = 0; i < N; ++i) a ^= A[i]; for (int i = 0; i < M; ++i) b ^= B[i]; if...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; #define _USE_MATH_DEFINES typedef long long ll; typedef long double ld; typedef pair<int,int> pii; typedef complex<ld> pt; typedef vector<pt> pol; const char nl = '\n'; const int INF = 0x3f3f3f3f; const ll INFLL = 0x3f3f3f3f3f3f3f3f; const ll MOD = 1e9+7; const ld EPS = 1...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long llu; #define MOD 1000000007 #define print(A,n) for(ll i=0;i<n;++i)cout<<A[i].ss<<' ';cout<<endl; #define _accept(X,N) for(ll i=0;i<N;++i)cin>>X[i]; #define forzer(i,n) for(ll i=0;i<n;++i) #define rep(i,s,e) for(ll i=s;i<e;+...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <cstdio> #include <cstring> #define N 200005 char a[N]; int n, k; int main(){ scanf("%d%d%s", &n, &k, a + 1); int cnt = 0, top = 0; for (register int i = 1; i <= n; ++i){ if (a[i] == '(' && cnt < (k >> 1)) putchar('('), ++cnt, ++top; if (a[i] == ')' && top > 0) putchar(')'), --top; } }
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
/* yusitong 2018-08-03 */ #define _CRT_SECURE_NO_WARNINGS #include"bits/stdc++.h" using namespace std; typedef long long LL; const int INF = 0x7fffffff; const int N = 2e5 + 100; int n,k; char s[N],sta[N]; int main() { cin>>n>>k; scanf("%s",s+1); int top=0,a=0,b=0; for(int i=1;i<=n&&top<k;i++){ if(s[i]=='('){ i...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
//Problem C #include<bits/stdc++.h> using namespace std; int t,n,a[1000005],b[1000005],s,v,u; void rd(int &a){ a=0;char ch=getchar(); while(!isdigit(ch))ch=getchar(); while( isdigit(ch))a=(a<<1)+(a<<3)+(ch^48),ch=getchar(); } long long cal(int a,int b,int c,int d){ return 1ll*(a+b)*(a+b)*c*d; } void op...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; string a, b; int main(){ int n, m; cin>>n>>m; if(n<m){ for(int i = 0;i<n;i++) a+='1', b+='1'; if(2*n-m>=0) for(int d=2*n-m;d>0;d--) b+='0'; if(2*n-m<0) for(int d=m-2*n;d>0;d--) b = '1'+b; cout<<b<<endl<<a; }else{ for(int i = 0;i<n;...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; int i,j,l; deque<int> dq; j=n; if(j>=5) {dq.push_front(5); j=j-5;} else{ dq.push_front(j); j=0; } while(j>0){ if(j>4){ dq.push_front(4); j=j-4; ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <iostream> #include <algorithm> #include <vector> #include <cstring> #include <map> #include <set> #include <queue> #include <cstdio> #include <cmath> #include <limits.h> using namespace std; typedef long long LL; int n,m; int main() { scanf("%d %d",&n,&m); for(int i=1;i<=n;i++) { printf("1"); } printf...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; int main(){ int n, m; cin>>n>>m; int x; x=n/9+1; /*if(n%9){ x=n/9+1; }else{ x=n/9; }*/ for(int i=0;i<x;i++){ cout<<'9'; } cout<<"\n"; for(int i=0;i<x;i++){ cout<<'9'; } for(int i=0;i<x-1;i++){ cout<<'0'; } cout<<'1'; }
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include<bits/stdc++.h> typedef long long ll; using namespace std; int main() { int a,b; cin >> a >> b; int no = a/9; int lst = a%9; for(int i=0;i<no;i++) cout << 9; cout << lst; cout << endl; for(int i =0;i<no+1;i++) cout << 9; if(!lst) no--; for(int i=0;i<no;i++) cout << 0; cout << 10-lst; }
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <algorithm> #include <cctype> #include <cstdio> #include <cstring> typedef long long LL; inline int readInt() { int ans = 0, c, f = 1; while (!isdigit(c = getchar())) if (c == '-') f *= -1; do ans = ans * 10 + c - '0'; while (isdigit(c = getchar())); return ans * f; } const int N = 200050; LL...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <cstdio> using namespace std; int b[141000]; long long a[141000]; int main(){ int N; scanf("%d", &N); for(int i = 1; i <= N; i++) scanf("%d", &b[i]); int bi = 0; b[0] = b[N]; for(int i = 1; i <= N; i++) if(b[i] > b[i - 1]){ bi = i; break; } if(bi == 0){ if(b[1] == 0){ puts("YES"); ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; int main() { int i = 0; bool ans = 1; int n; cin >> n; char in; for (i; i < n; i++) { cin >> in; if (in == '1'){ ans >>= 1; break; } } for (++i; i < n; ++i) cin >> in; cout << (ans ? "EASY" : "HARD") << "\n"; return 0; }
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> using namespace std; int main() { int i,q,p,a; cin >>p; a=0; for (i=0; i<p; i++){ cin >>q; if (q==1){ a=1; break; } } if (a==1) cout<<"HARD"; else cout<<"EASY"; return 0; }
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <iostream> using namespace std; int main() { int n,k,a[5]={0},sm=0,mx=0; string s,r[5]; cin>>s; n=s.size(); k=n/20; if(n%20)k++; for(int i=0;i<k;i++){ a[i]=n/k; sm+=a[i]; } mx=n/k; int i=0; while(sm<n){ sm++; a[i]++; if (mx<a[i])mx=a[i]; i++; } int p=0; for (i=0;i<k;i++){ for(int t...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <iostream> #include <cstdio> #include <string> using namespace std; int min(int a, int b) { if (a < b) return a; return b; } int main() { int n, k = -1; cin >> n; if (n <= 2) { cout << "No"; return 0; } if (n % 2 == 0) { cout << "Yes" << endl; ...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <bits/stdc++.h> #define inf 0x3f3f3f3f #define ii pair<int, int> #define vi vector<int> #define vii vector<ii> #define inf 0x3f3f3f3f using namespace std; #define MAXN 45001 int n; int gcd(int a, int b) { if(a == b) return a; if(a>b) return gcd(a-b, b); return gcd(a, b-a); } int main() { ios::sync_w...
You are a coding expert. Given a competition-level coding problem, you need to write a Python program to solve it. You may start by outlining your thought process. In the end, please provide the complete code in a code block enclosed with ``` ```. The code should take stdin as input and print the output. Your program s...
#include <iostream> using namespace std; long long gcd(long long a, long long b) { if (a == 0) return b; else return gcd(b%a, a); } int main() { long long n, s1=0, s2=0, num=0; cin >> n; for (int i = 1; i <= n; i++) { if (i % 2 == 0) s2 += i; else { s1 += i; } } if (gcd(s1, s2) > 1) { cout << "Yes\n...
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
4