Subcontests
(24)Sunny and Ming playing with strings
Let k≥4 be an integer. Sunny and Ming play a game with strings. A string is a sequence that every element of it is an integer between 1 and k, inclusive. At first, Sunny chooses two positive integers N,L≥2 and write down N strings, each having length L. Then Ming mark at most 2N strings. Then Sunny chooses an unmarked string s and calculate the biggest integer n such that there exists another string satisfying its first n element is the same as the first n element of s. Then Sunny burn down all strings which first n element if different from the first n element of s, leaving only the ones which have the same first n element of s. Finally, Ming chooses an integer d between 1 and k, inclusive, and remove all strings which (n+1)th element is d. Sunny's score would be the number of strings left. Find the maximum score that Sunny can guarantee to get.Proposed by USJL I have 0 feature :(
Define a "ternary sequence" is a sequence that every number is 0,1 or 2. ternary sequence (x1,x2,x3,⋯,xn), define its difference to be (∣x1−x2∣,∣x2−x3∣,⋯,∣xn−1−xn∣) A difference will make the length of the sequence decrease by 1, so we define the "feature value" of a ternary sequence with length n is the number left after n−1 differences. How many ternary sequences has length 2023 and feature value 0?Proposed by CSJL SUPER BALANCED PERMUTATIONS
Let N be a given positive integer. Consider a permutation of 1,2,3,⋯,N, denoted as p1,p2,⋯,pN. For a section pl,pl+1,⋯,pr, we call it "extreme" if pl and pr are the maximum and minimum value of that section. We say a permutation p1,p2,⋯,pN is "super balanced" if there isn't an "extreme" section with a length at least 3. For example, 1,4,2,3 is "super balanced", but 3,1,2,4 isn't. Please answer the following questions:
1. How many "super balanced" permutations are there?
2. For each integer M≤N. How many "super balanced" permutations are there such that p1=M?Proposed by ltf0501 Cover a board with three types of dominoes
There are three types of piece shown as below. Today Alice wants to cover a 100×101 board with these pieces without gaps and overlaps. Determine the minimum number of 1×1 pieces should be used to cover the whole board and not exceed the board. (There are an infinite number of these three types of pieces.)
[asy]
size(9cm,0);
defaultpen(fontsize(12pt));
draw((9,10) -- (59,10) -- (59,60) -- (9,60) -- cycle);
draw((59,10) -- (109,10) -- (109,60) -- (59,60) -- cycle);
draw((9,60) -- (59,60) -- (59,110) -- (9,110) -- cycle);
draw((9,110) -- (59,110) -- (59,160) -- (9,160) -- cycle);
draw((109,10) -- (159,10) -- (159,60) -- (109,60) -- cycle);
draw((180,11) -- (230,11) -- (230,61) -- (180,61) -- cycle);
draw((180,61) -- (230,61) -- (230,111) -- (180,111) -- cycle);
draw((230,11) -- (280,11) -- (280,61) -- (230,61) -- cycle);
draw((230,61) -- (280,61) -- (280,111) -- (230,111) -- cycle);
draw((280,11) -- (330,11) -- (330,61) -- (280,61) -- cycle);
draw((280,61) -- (330,61) -- (330,111) -- (280,111) -- cycle);
draw((330,11) -- (380,11) -- (380,61) -- (330,61) -- cycle);
draw((330,61) -- (380,61) -- (380,111) -- (330,111) -- cycle);
draw((401,11) -- (451,11) -- (451,61) -- (401,61) -- cycle);
[/asy]
Proposed by amano_hina Something with a lot of ! is integer
Find all positive integer n such that for all i=1,2,⋯,n, i!(n−i+1)!n! is an integer.Proposed by ckliao914 Maximal value
Given positive integer n>2, consider real numbers a1,a2,…,an satisfying a12+a22+…an2=1. Find the maximal value of ∣a1−a2∣+∣a2−a3∣+⋯+∣an−a1∣.
Proposed by ltf0501 BE \cap CF lies on (ADEF) or EF //BC , if DM , BE , CF are concurrent
Let D be a point on the circumcircle of some triangle ABC. Let E,F be points on AC, AB, respectively, such that A,D,E,F are concyclic. Let M be the midpoint of BC. Show that if DM, BE, CF are concurrent, then either BE∩CF is on the circle ADEF, or EF is parallel to BC.proposed by USJL collinear wanted, 2 circles and circumucircle related
Let △ABC be an acute triangle with circumcircle Ω. A line passing through A perpendicular to BC meets Ω again at D. Draw two circles ωb, ωc with B,C as centers and BD, CD as radii, respectively, and they intersect AB, AC at E,F, respectively. Let K=A be the second intersection of (AEF) and Ω, and let ωb, ωc intersect KB, KC at P,Q, respectively. The circumcenter of triangle DPQ is O, prove that K,O,D are collinear.proposed by Li4 A, O_P, O_Q, R are concylic
Let △ABC be an acute triangle. R is a point on arc BC. Choose two points P,Q on AR such that B,P,C,Q are concyclic. Let the second intersection of BP, CP, BQ, CQ and the circumcircle of △ABC is PB, PC, QB, QC, respectively. Let the circumcenter of △PPBPC and △QQBQC are OP and OQ, respectively. Prove that A,OP,OQ,R are concylic.proposed by andychang L,T,F are collinear iff B,E,A,R are concyclic.
The incenter of triangle ABC is I. the circumcircle of ABC is tangent to BC, CA, AB at T,E,F. R is a point on BC . Let the C-excenter of △CER be L. Prove that points L,T,F are collinear if and only if B,E,A,R are concyclic.proposed by kyou46