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

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

We will hold AtCoder Beginner Contest 138.

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

We are looking forward to your participation!

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

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

Oh~All of us can participate in the Codeforces contest after finishing the Atcoder Beginner Contest,that's so good!

Good luck to all && High rating :D

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

(Unofficial) I'll do English problem discussion streaming starting from 13:50 UTC (10 minutes after the contest): URL

If you are interested but you are participating in the CF round, check it after the contest!

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

Problem statements on AtCoder be like

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

ABCDE is quite easy, F is so hard.

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

I didn't realized that the contest is not ended yet.

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

    even if it is you shouldn't publicize it in midst of contest

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

    Don't you think it would have made more sense to post this comment after the contest ends? I think you should delete the comment so that others won't gain an unfair advantage.

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

How to solve F? I was thinking with digit dp but was unable to think the states. Please Help

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

Quick editorial:

  • A: Straightforward implementation.
  • B: Straightforward implementation.
  • C: The answer is a linear combination of the ingredient values. The earlier an ingredient is inserted into the pot, the smaller its coefficient will be in the final sum. So, they should be inserted in non-decreasing order of their value.
  • D: Accumulate $$$s_j$$$ = sum of $$$x$$$ over all operations on vertex $$$j$$$. The task is to compute for each vertex the sum of $$$s_j$$$ over all of its ancestors (including itself). We can do it with a DFS on the tree.
  • E: Process $$$s$$$ into sorted lists $$$\ell(c) =$$$ the indices at which character $$$c$$$ appears in $$$s$$$. We can use binary searches on these lists to compute $$$f(c, i) =$$$ the first index in $$$s'$$$ greater than $$$i$$$ at which character $$$c$$$ occurs. The answer is $$$f(t[-1], f(t[-2], f(t[-3], \dots f(t[1], f(t[0], -1)))))$$$.
  • F: Notice that for $$$y \geq x$$$, $$$(y \textrm{ XOR } x) \geq y - x$$$ and $$$(y \textrm{ MOD } x) \leq y - x$$$. Hence we need $$$(y \textrm{ XOR } x) = (y \textrm{ MOD } x) = y - x$$$. These constraints mean that if we construct the bits of $$$x$$$ and $$$y$$$ from most significant to least significant, they should share their leading bit and the set of "on" bits in $$$x$$$ should be a subset of the "on" bits in $$$y$$$. We can do a DP to construct pairs of digit strings $$$x, y \in [L, R]$$$ having those properties with state: (number of digits placed, has $$$x$$$ diverged from $$$L$$$, has $$$y$$$ diverged from $$$R$$$, has leading digit been placed). The implementation is quite short and perhaps easier to understand.
  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится +21 Проголосовать: не нравится

    maybe easier to understand without your template...

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

    Thanks for the quick explanations.

    In F, could you please explain a little more on These constraints mean that if we construct the bits of x and y from most significant to least significant, they should share their leading bit and the set of "on" bits in x should be a subset of the "on" bits in y. I mean how do we infer this? Also what exactly does this mean the set of "on" bits in x should be a subset of the "on" bits in y.. An example would really help! Thanks in advance!

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

      We need $$$y \geq x$$$ with $$$(y \textrm{ XOR } x) = (y \textrm{ MOD } x) = y - x$$$. $$$(y \textrm{ XOR } x) = y - x$$$ is true when $$$y$$$'s binary representation has $$$1$$$'s in all of the places that $$$x$$$'s binary representation does. $$$(y \textrm{ MOD } x) = y - x$$$ is true when $$$x > y/2$$$, which (in combination with the other requirement) simply means that they should have the same leading bit.

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

    Hi can you tell what is wrong in my approach I am using DP for problem C just like in matrix chain multiplication.

    Here is my codecode

    I was able to solve D and E but not C can you please help me..

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

      I don't think there's a need for dp here.

      I used a greedy approach which is to build a multiset or priority queue and we just can take the minimum $$$2$$$ elements and remove them from the queue and push the new value $$$(x+y)/2$$$ to the queue until we end up with one element only which wil be the answer.

      Code

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

      the main logic behind taking the smallest element first is that every time you take two number and add it's sum to by taking half to another number the relevance of first number to your new sum becomes 1/4 then 1/8 then 1/16 .......and so on. that's why u would always like to decrease the smallest u have and add the largest numnber to your answer as here u want the sum to be maximum if they would have asked for minimum u would have gone another way round.that's why the approach of using priority_queue, multiset or sorting works. I hope this helps

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

      I don't think your solution is not standard, this problem just sorts arrays and solve

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

even though i know memset can fuck me up at times, why do i still use it :|

ps:F anyone ?

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

How to solve F,it seems to be a math problem

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

How to solve F?

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

How to solve E and F?

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

For Task E, I used Binary Search just like others. But still I am getting TLE in 4 test cases even in C++. I tried to think really hard, but could not find the problem. I would really appreciate if someone can help me in this regard.

~~~~~

include <bits/stdc++.h>

using namespace std;

define ll long long

int main() {

string s,t; cin>>s>>t;

ll n = s.length(), m = t.length();

vector<vector > ids(26,vector());

for(ll i=0;i<n;i++) { ids[s[i]-'a'].push_back(i); }

ll prev = -1, ans=-1, count=0;

for(ll i=0;i<m;i++) {

char a = t[i];

if(!ids[a-'a'].size()) {
  cout<<-1<<endl;
  return 0;
}
else {
  vector<ll> curr = ids[a-'a'];

  ll low = 0, high = ((ll)curr.size())-1, res=-1;
  // cout<<1<<endl;
  if(prev<=curr[0])
    res = curr[0];
  else if(prev>curr[high])
    res = -1;
  else {
    while(low<=high) {
      ll mid = low+(high-low)/2;
      if(curr[mid]==prev){
        res = curr[mid];
        break;
      }
      else if(curr[mid]<prev) {
        low = mid+1;
        res = curr[low];
      }
      else {
        high = mid-1;
      }
    }
  }

  if(res==-1) {
    count++;
    ans = count*n + curr[0];
    prev = curr[0]+1;
  }
  else{
    ans = count*n + res;
    prev = res+1;
  }
}

} cout<<ans+1<<endl; return 0; } ~~~~

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

    I think its because of vector cur = ids[a -'a'] if there is 10 ^ 5 elements in ids[a — 'a'] and copying it 10 ^ 5 times from ids[a — 'a'] will be TLE, i think you can binary search for just ids[a — 'a'] without creating new array

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

      Thank You so much. If you would not have told this, I would have been still wondering and be in doubt. Thank You really.

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

For me same problem with E.

I still don't get it why it does not work. I inspected several solutions. They all do more or less the same. But mine does not work :/

Can somebody point me in the right direction, or, once again post the link to the testcases? Thanks!

https://atcoder.jp/contests/abc138/submissions/7001559

PS: And I think that code looks really nice, fairly simple solution ;)

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

    You are doing upper_bound every time

    Let's check this test case

    s = contesc, t = c

    in line 53 you take ll ans2 = 0, and in this test case your answer would be 7 instead of 1

    You need to take ans2 as -1 in the start

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

Will test cases be made available?

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

Problem E can be solved without binary search. My sub

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

    This is O(n^2). Looks like testcases are weak chokudai

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

where editorials can be found for this contest??

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

can anyone please explain logic behind Question D . It will be very helpful

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

In question D, my BFS solution got AC but now it is failing for 3 test cases added after competition, whereas DFS is getting AC unable to find the glitch, please help. My DFS and BFS codes are given below:

//DFS code: 
#include<algorithm>
#include <iostream>
#include<vector>
// #include<queue>
// #include<string>
#include <iomanip>
using namespace std;
typedef vector<int> vi;
typedef vector<vi> vvi;

void dfs(int v, int p, long long cost, vvi &a, vector<long long> &c, vector<long long> &up){
   c[v] = cost+up[v];
   for(auto u: a[v]){
       if(u==p) continue;
       dfs(u, v, c[v], a, c, up);
   } 
   return;
}

int main(){
    int n,m;
    cin>>n>>m;
    vvi a(n+1);
    for(int i=0;i<n-1;i++){
        int x, y;
        cin>>x>>y;
        a[x].push_back(y);
        a[y].push_back(x);
    }
    vector<long long> up(n+1, 0);
    for(int i=0;i<m;i++){
        long long x, y;
        cin>>x>>y;
        up[x] +=y;
    }

    vector<long long> c(n+1, 0);

    dfs(1, -1, 0, a, c, up); 
    for(int i=1;i<n+1;i++){
        cout<<c[i]<<" ";
    }

}
//BFS Code :
#include<algorithm>
#include <iostream>
#include<vector>
#include<string>
#include <iomanip>
#include <queue> 
using namespace std;

int main(){
    int n,Q;
    cin>>n>>Q;

    vector<vector<int>> adj(n+1);

    for(int i=1;i<n;i++){
        int p,c;
        cin>>p>>c;
        adj[p].push_back(c);
    }

    vector<long long> cost(n+1,0);

    for(int i=0;i<Q;i++){
        int v,c;
        cin>>v>>c;
        cost[v] += c;
    }

    queue <int> q;

    int a = 0;
    for(int i=0;i<adj.size();i++)
        if(adj[i].size()>0){
            a=i;
            break;
        }
    q.push(a);
    // vector<bool> vis(n+1,0);
    // vis[a] = 1;
    while(!q.empty()){
        int nc = q.size();
        
        while(nc>0){
            int pa = q.front();
            q.pop();
            nc--;
            long long pc = cost[pa];
            for(int i=0;i<adj[pa].size();i++){
                
                    // vis[adj[pa][i]]==1;
                    q.push(adj[pa][i]);
                    cost[adj[pa][i]] += pc;
                
            }
        }
    }

    for(int i=1;i<n+1;i++)
        cout<<cost[i]<<" ";
    cout<<endl;
}
  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Does your BFS solution fail because of Time Limit? Or Wrong Answer?

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

    In DFS code, you linked both (a[x], a[y]) and (a[y], a[x]), though only (a[x], a[y]) in BFS one.
    Additional testcases represent a tree structure like "1-3-2" (V = {1, 2, 3}, E = {(1, 2), (2, 3)}), which x isn't a parent of y.

    Try the case below. AC is "1 3 1" and DFS returns it but your BFS return "1 2 1".
    3 2
    1 3
    2 3
    1 1
    2 2

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

      Thank you, I finally know where I am wrong, I thought the data was given by the structure of the tree....

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

Is there tutorial part for Atcoder Problem ?