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

Автор atcoder_official, история, 3 месяца назад, По-английски

We will hold AtCoder Beginner Contest 343.

We are looking forward to your participation!

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

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

I hope good luck to everyone!

»
3 месяца назад, # |
  Проголосовать: нравится -13 Проголосовать: не нравится

Hope to solve A,B,C,D

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

I hope everyone enjoyed testing this round a lot!

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

Hope to solve A,B,C,D!

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

Hope to solve A,B,C,D,E!

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

I hope us all solve the A,B,C,D at least,and hope me solve the E even the F .

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

ABC 343 ......

Looks like questions will involve palindromes?

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

Good Lucky

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

Are there any Chinese? (I'm not good at English)

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

Why this code is getting TLE for task F

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

What are those 2 test cases in problem E ??

there were many WA's in Problem E.

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

    No idea. I too want to know.

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

    You cannot fixate the first cube to be in (0,0,0) and require that both of the other 2 have positive coordinates. The symmetry is wrong. Imagine a cube1 in the middle, cube 2 with positive y and positive z and cube 3 with negative y and positive z. Here are the cases for which your solutions should fail:

    Test cases
»
3 месяца назад, # |
  Проголосовать: нравится +53 Проголосовать: не нравится

E is the most garbage problem I've ever had the misfortune of attempting

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

    is it simulation ? how to solve it ?

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

      Notice that we can fix the first point to be (0,0,0) without loss of generality. Now, for the second and third points, we can brute upto (7,7,7) and (14,14,14) respectively. For some triplet of points, we can check the answer in O(1) by taking the intersecting cuboids and inclusion exclusion. Atleast that's what I did. I get wa on two testcases and cannot fix it no matter what I do ;-;

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

    Sounds like a skill issue

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

Can anyone tell me why this $$$O(n\log^2 n)$$$ solution cannot pass F?

https://atcoder.jp/contests/abc343/submissions/50837622

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

    I guess the time limit is tight. I first wrote a nlog^2n solution that didn't pass then I switched to nlogn by merging two sorted lists each time I merge two nodes. My submission

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

G is the same as this task.

But the data range of that task is smaller.

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

Problem G is a direct application of a standard technique and CF1200E: Compress Words.

I've added hints and thought process for this problem on CF Step

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

Can someone please tell me what is wrong with my solution to Problem F? I get the TLE part, but not the WA.

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

JasonQin is a cheater. He asked me solutions during the contest.

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

For problem E,is there any special conditions that I should take into consideration? I got 24/26 AC and it drove me crazy。

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

    Search the 3rd cube within [-7, 14]

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

    same i was also stuck there my solution https://atcoder.jp/contests/abc343/submissions/50843371

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

    You cannot fixate the first cube to be in (0,0,0) and require that both of the other 2 have positive coordinates. The symmetry is wrong. Here are the cases for which your solutions should fail:

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

      Why though? Isn't every symmetry which is possible using negative co-ordinates possible wrt the second cube which we assign?

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

        No. That is an interesting fact. It is not intuitive for me either. If it was 2 cubes in total instead of 3, it would be fine.

        I wonder if for 3 squares, you would need negative number, but Im not sure either.

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

        If the cubes given by $$$C(a_i,b_i,c_i)$$$ satisfy $$$a_1<a_2<a_3$$$, $$$b_2<b_3<b_1$$$ and $$$c_3<c_1<c_2$$$, then we cannot get them in the same octant (with some vertex as the origin).

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

This is my solution for F.Luckily i didn't got tle.

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

Can anyone Please give me the Solution of Problem-F — Second Largest Query ...

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

    I use segment tree. You can maintain [max, sec_max, cnt_max, cnt_sec_max] in each node. Then it's just if-else case working in your propagation function.

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

I try to find point B and C in [0,14], but I got wrong answer on 04_killer2_00.txt and 04_killer2_00.txt. Who can tell me why :(

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

    Problem E

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

    You cannot fixate the first cube to be in (0,0,0) and require that both of the other 2 have positive coordinates. The symmetry is wrong. Here are the cases for which your solutions should fail:

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

F can be solve even if we need to find the number of occurrences of the k-th maximum.

If k <= 20, we can still used Segment Tree

If k <= n, simple 3D Mo does the task: Code

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

    Can you explain get_ans() function in your code? I used map<value, occurrence_num> to track the occurrence of all elements inside [L:R] then get the second largest value by std::next(map.begin()) but got TLE.

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

      It is a well-known trick. We use additional sqrt-decomposition to find the number of occurrences of x (CNT array).

      You have a problem: you are changing cnt array during 3D Mo (you use cnt to maintain a set of current elements). And you need to know the k-th minimum of the current set of numbers. We want to modify cnt in O(1) and get k-th minimum in O(sqrt(n)). The number of modify queries is O(n^5/3) and the number of get queries is O(q) — we call get exactly once for each query.

      We can perform these queries in required time. Divide array into blocks size of sqrt(n). For each block we maintain the number of different elements in it. Modify is trivial. To get k-th minimum, we need to find a prefix of blocks with >= k different elements, and then find the k-th minimum in the last of these blocks.

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

$$$O(n\sqrt{n})$$$ passes in 500 ms in F.

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

    How do you remove log factor in sqrt decomp? I tried but could not do it without map.

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

      Why do you need a map? I just stored the maximum, second maximum, and the frequencies of these two for each window.

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

        Lmao I am so dumb. I stored frequencies of all elements in map to mage updates O(logN), instead of making the update O(segment size). Thanks.

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

        My submission I am storing maximum and second maximum using sqrt decomposition . But I am getting wrong answer. Can you pls check what is wrong with it ?

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

can anyone help me point out why my solution for problem C fails on testcase17.txt https://atcoder.jp/contests/abc343/submissions/50848352

and my solution for problem D only fails on the last testcase: https://atcoder.jp/contests/abc343/submissions/50851607

edit: found the cause for WA in problem D, integer overflow. Idk cause for problem C still

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

I have one question to ask: Do Atcoder encourages participants to use Surfing and Searching Internet for solution? In today's problem E editorial's video, it encouraged to use ChatGPT to convert a python written code to a C++ version. Doesn't it break the fairplay and similar to cheating? (As in almost every official contest, it's punishable to surf and search internet during contest)

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

Can somebody help me with problem D? I know understand/know why i am getting TLE

#include <set>
#include <numeric>
#include <algorithm>
#include <vector>
#include <iostream>
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")
//======vector==========
#define vi vector<int>
#define vd vector<double>
#define vs vector<string>
#define vll vector<long long>
#define vc vector<char>
#define vld vector<long double>
#define vf vector<float>
//=====deque=========
#define di deque<int>
#define ds deque<string>
//=====set============
#define si set<int>
#define sll set<long long>
#define sc set<char>
#define mp make_pair
#define len(x) x.length()
#define sz(x) x.size()
//====greater<type>()=======
#define gld greater<long double>()
#define gi greater<int>()
#define gll greater<long long>()
#define gc greater<char>()
//=====static_cast<type>()====
#define sci(x) static_cast<int>(x)
#define scc(x) static_cast<char>(x)
#define scd(x) static_cast<double>(x)
#define scll(x) static_cast<long long>(x)
//========others===============
#define all(x) x.begin(),x.end()
#define ll long long
#define ld long double
#define te *=
#define pe +=
#define me -=
#define de /=
#define ge >=
#define le <=
#define ee ==
#define ne !=
#define pb push_back
#define tos(x) to_string(x)
#define nl '\n'
//=====END OF TEMPLATE===========

using namespace std;

int check(vi a){
	int q = sz(a);
	si s; for(int i = 0; i < q; i++){
		s.insert(a[i]);
	}
	return sz(s);
}
void solve(){
	int n , t; cin >> n >> t;
	vi mex; for(int i = 0; i < n; i++) mex.pb(0);
	for(int i = 0; i < t; i++){
		int a, b; cin >> a >> b;
		mex[a-1] pe b;
		cout << check(mex) << nl;
	}
}
int main (){
	ios::sync_with_stdio(false); 
	cin.tie(nullptr);
	//ll t; cin >> t;
	//for(;t--;){
		solve();
	//}
return 0;
}

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

    It seems like your code is $$$O(n^2)$$$.

    This is my solution:

    Because of the large value range of the scores, we first discretize each person's score using unordered_map. Then we use buckets to count each person's score, and bitset to maintain whether the score occurs or not, and just output the number of 1's in bitset.

    Just like this(code in C++):

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<bitset>
    #include<unordered_map>
    using namespace std;
    unordered_map<long long,long long>Hash;
    bitset<200010>bz;
    long long scores[200010],sum[200010],Hash_cnt;
    int main()
    {
    	int n,q;
    	scanf("%d%d",&n,&q);
    	bz[0]=1;
    	sum[0]=n;
    	for(int i=1;i<=q;i++)
    	{
    		long long x,y;
    		scanf("%lld%lld",&x,&y);
    		sum[Hash[scores[x]]]--;
    		if(sum[Hash[scores[x]]]==0) bz[Hash[scores[x]]]=0;
    		scores[x]+=y;
    		if(Hash[scores[x]]==0)
    			Hash[scores[x]]=++Hash_cnt;
    		sum[Hash[scores[x]]]++;
    		bz[Hash[scores[x]]]=1;
    		printf("%lld\n",bz.count());
    	}
    }
    

    520ms

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

I have a way to solve problem use $$$O(n \sqrt n \log n)$$$ .(My English is quite bad , don't mind)

First,divide the array into $$$\sqrt n$$$ blocks.For each block ,we give it a map<int,int> it means that number x appear map[x] times in the block.A change for A[x] only need $$$\log n$$$ time.

So,We can find the Largest number by auto it = map.end();it--; it is a pair<int,int> that the first value is the largest number and it's appear count is the second value.For the second large number,we can use the same way and the only difference is to it-- 2 times.(Note: there maybe only 1 value that map.size()=1 ,so we should have a special decision.

For each query,We can record the max and the 2nd.For block which is all in the query range,We should get the max and 2nd (only this two can change our recording) by following the above method.It take $$$O(\sqrt n \log n)$$$ time.For other pos,We can record in brute force because the number of it will not be larger than $$$2\sqrt n$$$.

My code is here:Code

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

My first code gives ACx31, WAx1 on Problem C.

I thought of enumerating from $$$\sqrt[3]{n}$$$ to $$$1$$$ and checking if its cube is a palindrome.

#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
unsigned long long n,cub,tmp;
bool check(unsigned long long qaq)
{
	int a[30];
	int cnt = 0;
	while (qaq)
	{
		a[++cnt] = qaq % 10;
		qaq /= 10;
	}
	for (int i = 1,j = cnt;i <= j;i++,j--)
		if (a[i] != a[j]) return false;
	return true;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	cin >> n;
	cub = floor(cbrt(n));
	for (unsigned long long i = cub;i >= 1;i--)
	{
		tmp = i * i * i;
		if (check(tmp))
		{
			cout << tmp << '\n';
			return 0;
		}
	}
}

While my second solution gots AC: (pre-calculating palindromic cube number and do binary search)

#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
const int N = 1e6 + 10;
long long n,l,r,mid,ans,cnt1;
long long a[N];
long long tmp;
bool check(__int128_t qaq)
{
	long long a[30];
	int cnt = 0;
	while (qaq)
	{
		a[++cnt] = qaq % 10;
		qaq /= 10;
	}
	if (a[cnt] == 0) return false;
	for (int i = 1,j = cnt;i <= j;i++,j--)
		if (a[i] != a[j]) return false;
	return true;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	for (long long i = 1;i <= 1e6;i++)
		if (check(i * i * i)) a[++cnt1] = i * i * i;
	cin >> n;
	l = 1;
	r = cnt1;
	while (l <= r)
	{
		mid = (l + r) >> 1;
		if (a[mid] <= n)
		{
			ans = mid;
			l = mid + 1;
		}
		else r = mid - 1;
	}
	cout << a[ans] << '\n';
}

What happened? I think two solutions are the same.

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

can someone please tell expected rating of E and F que according to codeforces rating system??

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

can anyone prove why for problem E

the solution that first cube placed at (0,0,0)

second cube from 0->7 and third cube from 0->14 fails.

i am trying to visualize the placement of 3 cubes not possible from this kind of arrangement, but i am not able to find any such placement.

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

йеша

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

for 1st problem: WRONG ANSWER

i submitted this code

package main

import "fmt"

func main(){ var a, b int fmt.Scan(&a, &b) if a+b == 0 { fmt.Println((a+b) + 1) } else if a+b <= 9 { fmt.Println((a+b) — (b + 1)) } }

logically its correct but don't what are 2 test cases my test case fails

please can someone see and review it.