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

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

We will hold AtCoder Beginner Contest 161.

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

We are looking forward to your participation!

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

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

I wish it will be a perfect contest!

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

In Problem F
For N = 6
When K = 3 : 6 -> 2 -> 1
Why K = 3 is not considered in first sample?

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

    When 3 divides 6 it changes N to N/k which is 2 and N-K,i.e., 2-3 is equal to -1 and not 1. :)

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

    for k=3

    n = 6

    1> 6%3==0: n = 6/3=2

    2> 2%3!=0: n = 2-3=-1

    it's wrong

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

      Ok, Thanks I wrongly interpreted the question, I thought that we can choose different K at each step while reducing N.

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

    Hmm, everyone is pointing out wrongly... If you choose $$$K = 3$$$, performing one operation results in $$$2$$$, which is less than K, so you don't have to consider operations one more time :)

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

Do you have a smooth network today?

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

Why does this solution fail E?

Code

If max amount of work is greater than k then the answer is empty.
Else let bottleneck day be the only day on which max amount of work is equal to j(say),search for bottleneck, it would be part of the answer, now search for bottleneck again starting from index (currentbottleneck+c+1) and repeat till i=n-1

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

    I solved E doing dpl[n + 1] and dpr[n + 1] — the max days we can work in 0...i for dpl and i...n dpr. So i will be in the answer if dp[i] + dp[n — i — 1] < k and dp[i] + dp[n — i — 1] + 1 == k and
    s[i] == '0'.Sorry for my poor English.

    Code:

    #include <bits/stdc++.h>
    #define int long long
     
    using namespace std;
     
    signed main() {
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        cout.tie(NULL);
        int n, k, c;
        string s;
        cin >> n >> k >> c >> s;
        int dpl[n + 1], dpr[n + 1];
        dpl[0] = 0;
        dpr[0] = 0;
        int last = -10000000;
        for (int i = 1; i <= n; ++i) {
            if (s[i - 1] == 'x') dpl[i] = dpl[i - 1];
            else if (last + c < i) {
                last = i;
                dpl[i] = dpl[i - 1] + 1;
            }
            else dpl[i] = dpl[i - 1];
        }
        last = -10000000;
        for (int i = 1; i <= n; ++i) {
            if (s[n - i] == 'x') dpr[i] = dpr[i - 1];
            else if (last + c < i) {
                last = i;
                dpr[i] = dpr[i - 1] + 1;
            }
            else dpr[i] = dpr[i - 1];
        }
        //for (int i = 0; i <= n; ++i) cout << dpr[i] << " ";
        for (int i = 0; i < n; ++i) {
            int left = i;
            int right = n - i - 1;
            if (s[i] == 'o' && dpl[left] + dpr[right] < k && dpl[left] + dpr[right] + 1 >= k) cout << i + 1 << endl;
        }
        return 0;
    }
    
  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится +8 Проголосовать: не нравится

    You need an else block for when indices.size()!=1: In this case, the best strategy (i.e. causes the least forced days) is to work on the earliest day $$$d^*$$$ inside indices{}, because if a future day is forced when using $$$d^*$$$ then it is also forced for any other $$$d$$$ inside indices{}, but not necessarily the other way around. After you select $$$d^*$$$, you should increment the index appropriately.

    For instance suppose you have 4 o's in a row, where the first and second have maxwork=2, and the third and fourth have maxwork=1. Then assume you work on the day with the first o. This might disqualify the 3rd o, making the 4th o forced. So you need a condition similar to your index=c+1+index1, except assuming you work on the earliest day $$$d^*$$$.

    I think something like "oooxo" with k=2, c=2 should exhibit this problem- you'll have maxwork = 2, 2, 1, 1, etc.

    Mine to compare (btw linear time with a stack instead of a set is possible) https://atcoder.jp/contests/abc161/submissions/11538625

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

      Thank you very much :D
      Moved the index=c+1+index1; part outside if statement and it worked :D

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

    Maybe the hardest thing to encounter image

    Can anyone check why this fails in one test case? https://atcoder.jp/contests/abc161/submissions/17260017

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

I think the difficulty gap from C to D is way more than expected

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

    D is bruteforce recursion, and I feel F is also much easier this time.

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

    D is not hard, just dfs.

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

      How you used dfs in it?

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

        I just generated up to 10^5 Lunlun Numbers and output the kth

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

Video tutorials + Screencast

Screencast

Video Editorials

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

I think F is easier than D;

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

    With D a brute force works, just maintain the lunlun numbers as an array, and increment i times. That is fairly simple compared to F.

    Submission

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

      Can you explain your logic please !

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

        We store the digits of the number in an array as if written down on paper.

        Incrementation works just like that, we increment the lowest significant digit. If it runs out of scope (higest possible number), then we increment the one at one position higher, and use the lowest possible number for the digits at the lower positions.

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

Can somebody explain me logic behind problem F? I only can guess that n = (ak + 1) * b or n = ak + 1.

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

    Solution to $$$F$$$:

    If $$$N=2$$$, the answer is $$$1$$$.

    Otherwise, let's define the function $$$f(x, y)$$$ like this:

    bool f(long long x, long long y)
    {
        while(x%y==0)
        {
            x/=y;
        }
        return x%y==1;
    }
    

    Now for all $$$i$$$ $$$(i>1)$$$ which is the factor of $$$N$$$, add $$$f(N, i)$$$. Let's define this sum as $$$S$$$, and the number of factors of (N-1) as $$$T$$$. The answer is $$$S + T$$$.

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

    $$$n$$$ can be of the form $$$k^p$$$ or $$$k^p(km+1)$$$. So we can loop over $$$\sqrt{n}$$$ values to check such $$$k$$$. Here

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

      Can you please explain it with more details?

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

        Umm I mean suppose you have reached $$$1$$$ then either you reached it by dividing some other number by $$$k$$$ or adding $$$k$$$.

        Now just follow the question's operations. Note that as soon as our number is not divisible by $$$k$$$ then we may only subtract $$$k$$$. So in the first case in above paragraph, it must be that number is $$$k^p$$$. In second case, we may add any number of $$$k$$$, and after that multiply by $$$k$$$ any number of times, so that following questions sequence of operations always reduces it to $$$1$$$.

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

Can anyone reason out why adding codes for compiler optimization gives RTE ? I wasted a lot of time and attempts over it. RTE   AC chokudai ?

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

https://ide.codingblocks.com/s/205523

Why is this giving WA in B ?

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

    it should be ceil(sum/(4.0*(double)m)). you are meant to round it up to fit the requirement

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

    you are dividing sum by 4*m and both of them are int, so there division gave you a rounded down int. suppose sum/(4*m) is 96.5, your code will convert it to 96 and then include all the 96s in the array which shouldn't be include as 96<96.5 . use double while dividing and then use ceil function.

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

    Line 23: if(v[i]>=sum/(4*m)), this does integer division as both sum and m are integers.

    The correct way would have been to store it in a double and then compare.

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

    Cast integers to doubles where you are doing division and comparison

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

    Change if(v[i]>=sum/(4*m)) to if(4*m*v[i]>=sum) .

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

Could someone tell me where my code for F is wrong. Only 6 out of 25 test cases were wrong.

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

In D I used binary search + digit dp. It took me a lot of time to implement that :/// solution link

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

    Can you explain please what dp[12][N][2][2] in your code means?

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

      You may check the digit Dp article if you don't know about it.

      Digit DP

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

      yeah sure,

      first dim means — the last digit that is used

      second dim means — the length of number iterated

      third means — the lower limit is fixed or not (this one is not required as lower limit is always one)

      fourth one — if upper limit is fixed or not

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

    Wow, Thank you!

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

    Same here. D was a bit tough for me while F was much easier. It took me 25 minutes to solve D with BS+digitdp and just 7 minutes in F.

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

What am I missing for D? 100000 case doesn't work.

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        PrintWriter pw = new PrintWriter(new OutputStreamWriter(System.out));

        int k = Integer.parseInt(br.readLine());

        HashSet<Long> set = new HashSet<>();
        LinkedList<Long> q = new LinkedList<>();
        for (long i = 1; i <= 9; i++) {
            q.add(i);
            set.add(i);
        }

        if (k <= 9) {
            pw.println(k);
            pw.close();
            return;
        }

        while (!q.isEmpty()) {
            long head = q.poll();
            for (long i = head % 10 - 1; i <= head % 10 + 1; i++) {
                if (i < 0) continue;

                long val = head * 10 + i;
                if (set.contains(val)) continue;

                set.add(val);
                q.add(val);

                if (set.size() == k) {
                    pw.println(val);
                    pw.close();
                    return;
                }
            }
        }

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

    Never mind, I figured it out. When the last digit is 9, the queue puts in a 0, bc (9 + 1) % 10 = 0

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

Can someone describe how to solve D? Was it dp digits?

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

    I solved it using bfs. Here is my solution

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

    I used simple BFS.

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

    I did it using simple bfs.

    link to submission

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

    You can solve with bruteforce, just store Lunlun numbers in an array.

    Then check the last digit of i'th entry, let it be x. Then for next position, you can have digit -> x-1, x and x + 1.

    For example: Initial array : [1, 2, 3, 4, 5, 6, 7, 8, 9]

    Consider you are at 1 -> 10 , 11, 12. Then increase the pointer after you try all consecutive of current entry.

    Now do same for 2-> 21, 22, 23.

    and keep adding them in the array. You can implement it recursively as well as iteratively.

    Iterative

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

    BFS can solve the problem.

    int n,cnt;
    void solve(){
    	cin>>n;
    	queue<string> q;
    	rep(i,1,10)q.push(to_string(i));
    	while(1){
    		int m = q.size();
    		for(int i=0;i<m;i++){
    			string s = q.front();
    			q.pop();
    			if(++cnt==n){
    				cout<<s;
    				return ; 
    			}
    			if(s.back()=='0')q.push(s+'0'),q.push(s+'1');
    			else if(s.back()=='9')q.push(s+'8'),q.push(s+'9');
    			else q.push(s+(char)(s.back()-1)),q.push(s+s.back()),q.push(s+(char)(s.back()+1));
    		}
    	}
    }
    
»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

What is wrong with the following code for problem B?

    int n,m;
    cin>>n>>m;
    int tot = 0;
    vector<int> arr(n,0);
    for(int i=0;i<n;i++) {
    	cin>>arr[i];
    	tot+=arr[i];
    }
    sort(arr.rbegin(),arr.rend());
    int req=tot/(4*m);
    int cnt = 0;
    for(int i=0;i<n && cnt<m;i++) {
    	if(arr[i]>=req) {
    		cnt++;
    	} else break;
    }
    if(cnt>=m) cout<<"Yes";
    else cout<<"No";
»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I think this contest is more difficult than before.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится
#include<bits/stdc++.h>
using namespace std;

int main(){
  long long n,k;
  cin>>n>>k;
  long long N=n;
  long long mn=1000000000000000000;
     while(n>=0){
        mn=min(n,mn);
        if(n<k){
            n=k-n;
        }
        else{
            n=n-k;
        }
        if(n==mn){
        mn=min(n,mn);
            break;
        }
     }
     cout<<mn;

   return 0;
       }

i was getting tle. Can anyone help me ?

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

    For small k and big n the loop will run n/k times, wich then is to slow. You can speed this up by using mod operations.

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

      oh yes. thanks. i tried to make both conditions using mod but the k>n condition was giving error. But why? can you please explain ?

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

        I think there are a lot of possible implementations. The basic aproach is the same for all: For big $$$n$$$ and small $$$k$$$ the loop is shortened by removing a multiple of $$$k$$$ in one step.

        My Submission

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

So,how to solve the problem D?

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

    If you were to generate all numbers, it'd be something like this:

    vector<long long> num;
    void brute(int i, int last, long long cur){
        if(i == 0) return;
        num.push_back(cur);
        if(last > 0) brute(i-1, last-1, cur * 10 + last - 1);
        if(last < 9) brute(i-1, last+1, cur * 10 + last + 1);
        brute(i-1, last, cur * 10 + last);
    }
    

    Where $$$i$$$ is the maximum number of digits, $$$last$$$ is the last digit you used and $$$cur$$$ is your current number.

    Then, you can use nth_element or sort to get $$$k-1$$$ smallest.

    But why does this work? Well since there are only 3 transitions, complexity would be $$$O(3^D)$$$ where D is the maximum number of digits. Turns out answer will have not more than 12 digits so you can just brute force it =p.

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

    You can approach that problem by using backtracking. Let's say you have a lunlun number x, you can find another lunlun number by taking the last digit of x which is d = (x%10) and appending d, d+1, d-1 to x. Then you keep doing the same on the new lun lun number. Also you have to keep in mind that initially you have start with all the single digit numbers. You can imagine the tree as 0 at the top and the root node, the from that emerges 9 branches to 1, 2, 3, 4, 5, 6, 7, 8, 9. Then from each one of them will emerge at most 3 branch. Like from 2 we will have 21, 22, 23. And so on.

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

So how to solve E?

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

    Let's define dpl[i] as the max number of days that we can work in first i days, and define dpr[j] as the max number of days that we can work in last j day. The size of both arrays is n + 1. We can precalculate dpl and dpr greedy, base: dpl[0] = 0, dpr[0] = 0, last = -inf. Then iterate from left to right, keeping last as last day when he worked. Same for dpr.

    If day i is in the answer, then s[i] == 'o'(Im counting days from 0 to n — 1) and dpl[i] + dpr[n — i — 1] < k and dpl[i] + dpr[n — i — 1] + 1 == k(may be its useless condition). Time complexy: O(n) Code:

    https://atcoder.jp/contests/abc161/submissions/11534466

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

Please atcoder! can you make english editorial.

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

can anyone explain the d part and what is written in the editorial of d in japanese

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

    This problem can be solved efficiently using Queue.

    Prepare one Queue and Enqueue 1, 2, ..., 9 in order. Then do the following K times:

    • Dequeue the Queue. Let x be the extracted element.

    • Let d = x mod 10.

    • if d = 0. Enqueue 10x, 10x+1.

    • if d = 9. Enqueue 10x + 8, 10x + 9;

    • else Enqueue 10x + d-1, 10x + d, 10x + d + 1.

    Kth extracted element will be the answer.

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

      Above is what you get if you translate the Japanese editorial for D.

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

    The same idea:

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

It's harder to understand the editorial than to understand the problem statement. (Since the editorial is in Japanese ! )

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

can anyone plz explain the logic behind E??

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

My submission for problem 'D' is giving Runtime error on sample test cases on Atcoder but this code is working fine on Codeforces custom invocation.

I tried to cut-short the code to find my mistake but still, I can't find my mistake, Here is the link of a very short and clean code which should give WA but is giving RE instead. Can someone help me find the mistake in either of the code?

Edit: It got accepted when I removed lines 8 to 12 (pragma tags) but I am still unable to understand why including pragma tags is giving RE here

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

Supplementary editorial and sample codes for last 4 problems AtCoder ABC 161

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

why this code is giving TLE for question F

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll func(ll n,ll x)
{
    while(n%x==0)
        n/=x;
    if(n%x==1)
        return 1;
    else return 0;
}
int main()
{
	ll t;
	t=1;
	while(t--)
    {
        ll n;
        cin>>n;
        ll s=0;
        for(int i=2;i*i<=(n-1);i++)
        {
            if((n-1)%i==0)
            {
                s++;
                if((n-1)/i != i)
                    s++;
            }
        }
        ll c=0;
        for(int i=2;i*i<=n;i++)
        {
            if(n%i==0){
                c+=func(n,i);
            if(n/i != i)
                c+=func(n,n/i);
            }
        }
        cout<<c+s+2;
    }
}

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

I find a data that someone can not pass for Problem E 5 2 1 oxooo the result is empty,but someone will out 1

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

Whats wrong in this solution for problem 'Replacing integer' . I have even gone through editorial solution.Its same as mine.Whats wrong here..Please someone look at this

https://atcoder.jp/contests/abc161/submissions/11572033

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    if(a[i]>=(sum/(4*m)))
    

    Instead of dividing on the right you better multiplicate on the left side, to avoid rounding issues.

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

      Will u please see my solution of E.My solution is same as editorial. but i dont understand what the hell is wrong here?? pls look at this.
      thanks in advance
      https://atcoder.jp/contests/abc161/submissions/11577640

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

        I think the editorial means the size of array is K , here is My code ,the idea is the same with editorial.it's easy to understand ,hope it will help.

        Spoiler