Skip to main content

Cheese and Random Toppings

Problem Link

#include <iostream>
#include <vector>
#include <cstring>
using namespace std;
#define LL long long int

LL lucas(LL n,LL r,LL p)
{
LL ans=1,ncr[p][p];
memset(ncr, 0, sizeof ncr);
for (int i = 0; i < p; ++i)
{
ncr[i][0]=1;
}
for (int i = 1; i < p; ++i)
{
for (int j = 1; j <= i; ++j)
{
ncr[i][j]=(ncr[i-1][j] + ncr[i-1][j-1])%p;
}
}
while(n && r)
{
ans=(ans * ncr[n%p][r%p])%p;
n/=p;
r/=p;
}
return ans;
}

LL fastExpo(LL a, LL b, LL P) {
  LL res = 1;

  if(b==0)
return 1;
if(b==1)
return a;

  while (b) {
    if (b & 1) {
      res = (res * a) % P;
    }
    a = (a * a) % P;
    b = b >> 1;
  }
  return res;
}

int main()
{
int t;
cin>>t;
while(t--)
{
long long int n,r,m,tm,ans=0;
cin>>n>>r>>m;
tm=m;
for (int i = 2; i <= 50; ++i)
{
if(tm%i == 0)
{
long long int temp=lucas(n,r,i);
temp=(temp * (m/i))%m;
temp=(temp * fastExpo(m/i,i-2,i))%m;
ans=(ans + temp)%m;
tm/=i;
}
}
cout<<ans<<"\n";
}
return 0;
}

Comments

Popular posts from this blog

MAIN72

MAIN72 - Subset sum #include <iostream> #include <cstring> using namespace std; bool dp[100001][1001]; int arr[1001]; int main() {     int t, n;     long long int sum;     cin >> t;     while(t--)     {         cin >> n;         memset(dp, false, sizeof(dp));         sum = 0;         for(int i = 0; i < n; i++)         {             cin >> arr[i];             sum += arr[i];         }         for(int i = 0; i < n; i++)             dp[0][i] = true; // 0 sum         for(int i = 1; i < n; i++)             dp[i][0] = false; // sum is i but 0 element         for(long int i = 1; i <= sum; i++)         {             for(int j = 1; j <= n; j ++)             {                 dp[i][j] = dp[i][j - 1];                 if(i >= arr[j - 1])                     dp[i][j] = dp[i][j] || dp[i - arr[j - 1]][j - 1];             }         }         long int result = 0;         for(int i = 1; i <= sum; i++)  

War of XORs- XORIER

Problem Link #include <iostream> using namespace std; int main() { int t, n, odd, even; cin >> t; while(t--) { cin >> n; int i,arr[n],freq[1100001]={0}; long res = 0; odd = even = 0; for(int i = 0; i < n; i++) { cin >> arr[i]; freq[arr[i]]++; } for(int i = 0; i < n; i++) { if(arr[i] & 1) { odd++; } else { even++; } } for(int i = 0; i < n; i++) { if(arr[i] % 2) { res += odd; } else { res += even; } res -= freq[arr[i] ^ 2]; res -= freq[arr[i]]; } cout << res / 2 << endl; } }

Chef and Easy Problem- XXOR

Problem Link #include <iostream> #include <vector> using namespace std; int main() { int n, q, l, r; cin >> n >> q; long arr[n]; vector<long> b[n]; for(int i = 0; i < n; i++) { cin >> arr[i]; long temp = arr[i]; int x = 0; for(int j = 0; j < 32; j++) { b[i].push_back(0); } while(temp) { b[i][x] = temp % 2; temp /= 2; x++; } } for(int i = 1; i < n; i++) { for(int j = 0; j < 32; j++) { b[i][j] += b[i - 1][j]; } } while(q--) { cin >> l >> r; l --; r--; long res = 0; for(int i = 0; i < 31; i++) { int setBits, unsetBits; if(l > 0) { setBits = b[r][i] - b[l - 1][i]; unsetBits = r - l + 1 - setBits; } else { setBits = b[r][i]; unsetBits = r - l + 1 - setBits; } if(setBits < unsetBits) { res |= (1 << i); } } cout << res << endl;