Блог пользователя chokudai

Автор chokudai, история, 4 года назад, По-английски

We will hold AtCoder Beginner Contest 169.

The point values will be 100-200-300-400-500-600.

We are looking forward to your participation!

  • Проголосовать: нравится
  • +85
  • Проголосовать: не нравится

»
4 года назад, # |
  Проголосовать: нравится -25 Проголосовать: не нравится

Editorial in english must also be posted as soon as in japanese.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +48 Проголосовать: не нравится

    I'll post my solutions after the round ends.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      where will You post It ?

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +4 Проголосовать: не нравится

      Atcoder should pay you for this...

    • »
      »
      »
      4 года назад, # ^ |
      Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

      In F, i take input of the interval as pairs and sorted the vector of pairs ,then find the median of that interval. Then do the necessary arithmetic as pointed out by Geothermal in here. This approrach fails in few test cases. What's wrong with my approach with F? Can anyone point out what am i missing? Link of my submission

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится +14 Проголосовать: не нравится

        I believe that for the $$$n$$$ even case, you select the wrong two indices to form the median. Use $$$\frac{n-1}{2}$$$ and $$$\frac{n}{2}$$$, rather than $$$\frac{n}{2}$$$ and $$$\frac{n+1}{2}.$$$

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          Your suggesstion did help to pass some test cases which were not passing earlier, but still few test cases are failing. Can't think of counter test case which could Hack my code.submission

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится +1 Проголосовать: не нравится

            You don't need to sort vector of pairs. Simply sort individually.

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              I know from the editorial but the problem is that I don't understand why my solution is wrong?

              • »
                »
                »
                »
                »
                »
                »
                »
                4 года назад, # ^ |
                  Проголосовать: нравится +1 Проголосовать: не нравится

                Your solution is wrong because you have sorted vector of pairs. Let these be pairs. 1 5 2 3 After sorting either they will remain same or 2 3 1 5 There is no possible way answer will be wrong in both the cases because for finding median array needs to be sorted.

»
4 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

I hope it would be a great Contest

»
4 года назад, # |
Rev. 3   Проголосовать: нравится +9 Проголосовать: не нравится

Excited that I will learn something new!

Update: Learned when to use double when not to use doubles and how to use doubles!

»
4 года назад, # |
  Проголосовать: нравится -80 Проголосовать: не нравится

2nd and the 3rd question seems easy but is really tricky... i dont know on which cases my code is getting wa...can anyone please help

»
4 года назад, # |
Rev. 2   Проголосовать: нравится -23 Проголосовать: не нравится

I'm so sad, it took me less time to D than it took me to do B and I haven't even done C. Everytime, I miss one of B-D. I'm cursed D:

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится -42 Проголосовать: не нравится

    I am missing something in B and getting WA again and again. Any hints please!

    • »
      »
      »
      4 года назад, # ^ |
      Rev. 2   Проголосовать: нравится +19 Проголосовать: не нравится

      I'd love to help but I think that is not allowed (correct me if I'm wrong, I'm new to CP), will definitely help after the contest ends.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Yes please man now

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится -10 Проголосовать: не нравится

          so you have to realize anytime the answer overflows out of limit(of data type) or become > 10^18. also if there is even 1 0, ans = 0. Code:

          include <bits/stdc++.h>

          using namespace std;

          typedef long long ll; typedef unsigned long long ull; typedef unsigned int uint; typedef long double ld;

          int main() { ios_base::sync_with_stdio(false); cin.tie(0);

          int n;
          cin >> n;
          ll t;
          ld ans = 1;
          for (int i = 0; i < n; i++)
          {
              cin >> t;
              if (ans != -1)
                 ans *= t;
              if (ans > 1000000000000000000 || ans < 0)
                 ans = -1;
              if (t == 0)
                 ans = 0;
          }
          cout << (ll)ans;
          return 0;
          

          }

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится +4 Проголосовать: не нравится

            I had the same code, only difference was that i used long long for 'ans' instead of long double and i got WA on one of the test cases .Changed to long double and got AC.Why?

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              Because long long data type could be overflowing from the multiplication of say 10^12 and 10^12.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I solved problem C, and I don't even understand why it works.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Will a CE submission be calculated into the overall penalty?

I submitted two pieces of codes in the wrong language and will my overall penalty increase by 10 min?

»
4 года назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

How to solve F?

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится

How to solve E!

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +10 Проголосовать: не нравится

    If n is odd, get the maximum median (sort array of B's and get its median) and the minimum median (sort array of A's and get it's median). The answer is max median — min median +1.

    If n is even, sort the arrays and do: max median = B[n/2] + B[(n/2)-1], min median = A[n/2] + A[(n/2)-1]. This way we avoid working with not integer numbers. So the answer is still max median — min median +1.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Oh god I was trying to use sweep type algorithm and check for each end point, but your answer is much much easier. Could not implement my approach but will try to refine it

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Thanks for your approach but can you prove it!

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I am not able to understand why every value between min and max can be attained? Can you explain plz.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится +4 Проголосовать: не нравится

        From the minimum median, you just need to icrease the median by 1 to go to the next value (in case of n pair, increase first the biggest one and after the smaller one in the middle). You can do this until reach the maximum median.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Thanks to 1358C, idea is very similar. You can observe minimum median will be median of array x and maximum medium will be median of array y.

    So values in the range median of array x to median of array y will be covered. Take care when size of array is even.

    Submission

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

In the second part, there are essentially two tricks for the problem 1) Sort the array. If the value at index i is 0, then we cannot return -1(no matter what). 2) Multiplying two extremely large numbers even when the data type is long long int will result in negative values, which will result in wrong answers. So, a*b>=c is equivalent to b>=(c/a)(take care of the border cases) Link to my code https://atcoder.jp/contests/abc169/submissions/13810433

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Okay, so in the 3rd question, I simply multiplied a and b, and applied the floor function for the product. Link to my code in C++ https://atcoder.jp/contests/abc169/submissions/13814577

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

I just wonder how to solve B,C...

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

i was getting TLE Second Question

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I'm guessing you may have tried to multiply all the numbers together in Python or a similar language? Since the intermediate products can have $$$O(N)$$$ digits, multiplying them takes $$$O(N)$$$ time, so this approach takes $$$O(N^2)$$$ time in the worst case.

»
4 года назад, # |
  Проголосовать: нравится +29 Проголосовать: не нравится

My solutions to all problems are at https://codeforces.com/blog/entry/78195.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Can someone please tell why this fails for C?

n = input().split()
i1 = int(n[0])
i2 = int(float(n[1]) * 100.0)
i = i1 * i2
print(i // 100)
  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    You need to round it, rather than taking its floor. For example float('2.51') = 2.509999999..., so int(float('2.51')*100) = 250.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

In C, why is math.trunc(a*b) in python giving WA,but in CPP, this is accepted-

ll a;
long double b;
cin>>a>>b;
ll ans;
ans=a*b;
cout<<ans;
»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

nvm, got it

»
4 года назад, # |
  Проголосовать: нравится -7 Проголосовать: не нравится

can anybody find mistake in my D solution.

#include<bits/stdc++.h>
using namespace std; 
bool ispower(int x,set<int> s)
{
	int f=0;
	int p=1;
	while(x%2==0)
	{
		p*=2;
		x=x/2;
		f=1;
	}
	if(x==1 && s.find(p)==s.end())return true;
	if(f==1)return false;
	int t=sqrt(x);
	for(int i=3;i<=t;i+=2)
	{
		int p=1;
		while(x%i==0)
		{
			f=1;
			x=x/i;
			p*=i;
		}
		if(f==1 && x==1 && s.find(p)==s.end())return true;
		if(f==1)return false;
	}
	return false;
}
bool isprime(int x)
{
	for(int i=2;i<=sqrt(x);i++)if(x%i==0)return false;
	return true;
}
int main()
{
	
	long long x;
	cin>>x;
	long long ans=0;
	int r=sqrt(x);
	set<int> s;
	bool seive[r+1];
	for(int i=2;i<=r;i++)seive[i]=true;
	for(int i=2;i<=r;i++)
	{
		if(seive[i])
		{
			for(int j=i;j<=r;j*=i)
			{
				if(x%j==0)
				{
					x=x/j;
					ans++;
					s.insert(j);
				}
			}
			for(int j=2*i;j<=r;j+=i)
			{
				seive[j]=false;
			}
		}
	}
	if(x>=2 && s.find(x)==s.end() && (ispower(x,s) || isprime(x)))ans++;
	cout<<ans;
	return 0;
}
»
4 года назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

Any care to explain why is this wrong for problem C ?


#define int long long void solve() { int a,b; double c; cin >> a; cin >> c; b = (c*100); int res = (a*b); res/=100; cout << res; }

It gives WA for random_12.txt

Edit : I always define int as long long in my template.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +24 Проголосовать: не нравится

    I'd guess the issue is double precision. Precision is an issue in general, but in particular, the answer here can be up to $$$10^{16}$$$, which is too large for the number of precision bits in a double.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      But here multiplications are in long long, the only place where precision could affect is assigning "b = c*100".

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится +16 Проголосовать: не нравится

        Ah, right; my bad--I misread the solution. The issue is precision in that conversion: I changed b = (c*100) to b = (c*100+0.5) and the solution was accepted.

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          Thanks for the solution.

          Any advice on how to avoid these errors in future ?

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится +17 Проголосовать: не нравится

            You need to understand why this error happened. The reason is that if you read a number as a double (lets say 10) the double can be represented as 9.9999... or maybe 10.000...01 (both of which are 10 indeed woth a very small error intrinsic to the floating point representation)) but in c++ if you convert them to an integer it truncates the value automaticaly, so the result could be either 9 or 10. The solution would be doing the comversion as x_int = round(x_double) or x_int = x_double + 0.5.

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              Thank you very much. This is what I was looking for.

              Being skeptic, if x_double is 4.50 is there any chance I will get 5 instead 4 using your suggested solution ?

              • »
                »
                »
                »
                »
                »
                »
                »
                4 года назад, # ^ |
                  Проголосовать: нравится +11 Проголосовать: не нравится

                Yes, it would be a problem. But you did not quite get how to use what I said. If a number has at most x decimal digits, you may want to multiply it to 10^x and convert to integer, so you do int_x = 10^x*double_x+0.5 (but if double_x has more the x digits this may not work correctly)

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится +8 Проголосовать: не нравится

            Do not assume double arithmetic is correct. Often it is not, the result is only near to the mathematic correct result.

            Deal with that or use integers.

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится 0 Проголосовать: не нравится

              I didn't, that's why I converted double to int and then calculated the result.

              I am yet to find any solution which always works for doubles.

            • »
              »
              »
              »
              »
              »
              »
              4 года назад, # ^ |
                Проголосовать: нравится +8 Проголосовать: не нравится

              I disagree with that. You just need to unserstand how big the error can be in the worst case, often the error is smaller than 1, so you can often get the integer part right for sure if the constraints allow that

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Use long double instead of double

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Why does long double over double changes anything ? considering value of is B < 10, having 2 digits are decimal point.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Range of input is too big which will have precision loss. Try using long long and long double

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Why does long double over double changes anything ? considering value of is B < 10, having 2 digits are decimal point.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

In the fourth question, I simply used the Sieve of Eratosthenes to get the prime numbers less than 1e6, after that I iterate from 2 to the largest prime less than 1e6, and simply code out for the number of ways the number can be broken down! Just be careful when we multiply two numbers of digits 5 and 6! Link to my code- https://atcoder.jp/contests/abc169/submissions/13855795

»
4 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится
»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How to solve c? I multiplied a*b and took floor(a*b). What's wrong? submission

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    See, Double can store large values but on the cost of significant digits,in Long you will get more significant digits before decimal point but then you can not store digits after the decimal points

»
4 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится
»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Please someone help me out with Problem C ....... My Submission

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Whats wrong wit C

import java.math.BigDecimal; import java.util.Scanner;

public class Main {

public static void main(String args[])
{
    Scanner sc=new Scanner(System.in);
    long a=sc.nextLong();
    long b=(long)(sc.nextDouble()*100);
    long ans=(a*b)/100;
    System.out.println(ans);

}
  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    My Simple and short Solution for C (Used Bigdecimal Library in JAVA)

    void solve() throws Exception{
    	BigDecimal bd1 = new BigDecimal(ns());
    	BigDecimal bd2 = new BigDecimal(ns());
    	bd1 = bd1.multiply(bd2); 
    	pn(bd1.toString().split("\\.")[0]);
     
    }
    
»
4 года назад, # |
Rev. 7   Проголосовать: нравится +19 Проголосовать: не нравится

I usually get one hit on both Codeforces and Atcoder, but this time seems horrible xD

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Whats wrong in D

import java.util.Scanner;

public class Main {

public static void main(String args[])
{
    Scanner sc=new Scanner(System.in);
   long n=sc.nextLong();
   long copyn=n;
   long x=(long)Math.sqrt(n);
   long copyx=x;
   long ans=0;
   for(int i=2;i<=x;i++)
   {
       int count=1;
       while(n%((Math.pow(i,count)))==0)
       {

           n= (long) (n/Math.pow(i,count));
           count++;
           ans++;
       }

       while(n%(Math.pow(i,count))==0)
       {
           n= (long) (n/Math.pow(i,count));
       }
   }

   if(copyn==1)
   {
       System.out.println(0);
   }
   else

   if(n>x)
   {
       System.out.println(1+ans);
   }
   else
   {
       System.out.println(ans);
   }

}

}

»
4 года назад, # |
  Проголосовать: нравится -15 Проголосовать: не нравится

What is the problem with this solution of C?Can someone help?

include<bits/stdc++.h>

using namespace std; typedef long long ll;

define mod 1000000007

int main() { ll a; float b1; cin>>a>>b1;
b1=b1*100; ll b=b1; ll s=a*b; s=s/100; printf("%lld\n",s); }

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Maybe precision issues? Try doing b1 = round(b1*100)

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Well, if the input is 1.890000 then it becomes 189.000000 and then 189 by typecast. There shouldn't be any problem.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится +7 Проголосовать: не нравится

        You dont understand how it works. The number may be interpreted as 188.99999999... which is the same as 189.00000 but when you cast to int in c++ the value is truncated, it sort of an undefined behaviour, the value may be casted to 188 or 189, use the round to avoid that.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

https://atcoder.jp/contests/abc169/submissions/13900202 [WA] https://atcoder.jp/contests/abc169/submissions/13900438 [AC]

Both are identical solutions for problem B of AtCoder Beginner Contest 169. Does anyone knows why this happen?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I think I got a beautiful solution for F: the answer is just the coefficient of x^s in polynominal (2 + x^a1)(2 + x^a2)...(2 + x^an) here '^' is for power. we can just ignore higher order coefficient than x^s.

https://atcoder.jp/contests/abc169/submissions/13847100

please ignore unremoved code for problem D, E.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

In B:
For the statement: if(inp[i] <= 1e18/ans) I got WA. But when i wrote : if(inp[i] <= 1000000000000000000/ans) I got AC. Is there any differences between 1e18 and 1000000000000000000?? Otherwise what is the reason??

»
4 года назад, # |
Rev. 3   Проголосовать: нравится +8 Проголосовать: не нравится

In editorial there is a typo in problem D English version.

Wrong:$$$O(N)$$$

Correct:$$$O(sqrt(N))$$$

Capture.png

»
4 года назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

Can AnyBody please tell how can i reduce the submission time of my solution to the problem F?

https://atcoder.jp/contests/abc169/submissions/13920879

I have seen people getting AC in less than 100ms while mine is giving AC in 1000 ms.

thanks in advance. :).

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

In the editorial of problem F it says:

dp[i][j] = When the choices for the first i options is already determined, the number of combination such that the sum of ak for each k that the first option was chosen is equal to j

What does it even mean?

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone help me debug my solution? I get TLE on 6-7 test cases, no idea why. Thank you!

#include <iostream>
#include <vector>
using namespace std;

int solve(long long n) {
    if (n == 1) {
        return 0;
    }
    vector<int> f;
    for (int i = 2; i * i <= n; i++) {
        while (n % i == 0) {
            f.push_back(i);
            n /= i;
        }
    }
    if (n > 1) f.push_back(n);

    int ans = 0;
    int i = 0;
    while (i < f.size()) {
        int j = i + 1;
        while (j < f.size() && f.at(j) == f.at(i)) j++;
        int count = j - i;
        i = j;
        int sum = 0;
        for (int x = 1; count >= sum + x; x++, ans++) sum += x;
    }
    return ans;
}

int main() {
    long long n;
    cin >> n;
    cout << solve(n) << endl;
}
  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +4 Проголосовать: не нравится
    for (int i = 2; i * i <= n; i++) 
    

    i * i can overflow since n goes upto $$$10^{12}$$$
    Use long long instead.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

what is my wrong with my code in problem-c? https://atcoder.jp/contests/abc169/submissions/13926562

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

For problem D, Maybe this sounds stupid, But can someone please explain why is it optimal to compute for each prime and its powers first, then similarly with next prime and its powers, and so on instead of going from 2 onwards ?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone provide any proof for problem-E for both odd and even case.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    If we increase one value by $$$1$$$ and leave the rest as it is, then median can stay the same or increase by $$$1$$$ for odd $$$n$$$ and stay the same or increase by \frac{1}{2}

    Unable to parse markup [type=CF_MATHJAX]

    is even. Now let's set $$$X_i = A_i$$$ and increase all of them one by one till we reach $$$X_i = B_i$$$. At first median equals median of $$$A_i$$$, and after all operations equals median of $$$B_i$$$ and at each step it will either stay the same or increase by $$$1$$$ in case of odd $$$n$$$ and by $$$\frac 12$$$ for even $$$n$$$ thus will reach all integers for odd $$$n$$$ and halfintegers for even $$$n$$$ from range $$$[\text{median}(A_1, \ldots, A_n), \text{median}(B_1, \ldots, B_n)]$$$.

    To prove we can't reach any other value we only need to see, that median of an integer sequence is an integer for odd $$$n$$$ and a half integer for even $$$n$$$ and see that we can't reach a value outside that segment, but this is straightforward conclusion from the fact, that if all values increase or stay the same, then the median can only increase or stay the same as well.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

If anyone is still stuck at D here is a Solution

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I am Facing problems in the C . No matter what I submit , I am shown wrong answer in 6/22 cases . I am not understanding where is the error or fault exists in that code .. If anyone knows , please give me the solution . My code is given below ::::

include<stdio.h>

int main() { long long int a,pro1; double b,pro=1.0; scanf("%lld %lf",&a,&b); b=b*100; pro=(a*b); pro1=(long long int)(pro/100); printf("%lld",pro1); return 0; }

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    For big values of $$$a$$$ the variable $$$pro$$$ has simply not enough bits to store the exact result of $$$a*b$$$. In this case the double type truncates bits, which results in pro1 beeing some other value than the mathematecally expected one.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can someone help me where I'm going wrong in problem D, I'm getting hand_22 as the only test case as WA. Here is my code https://atcoder.jp/contests/abc169/submissions/14102528 Thanks

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    ull i=1; You have this just before the for loop, but it should be inside it, so that the while loop always starts at 1. Since all the primefactors in mp are independent of each other.