Editorial for ICPC BAPC 2021 G - Gyrating Glyphs


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
  • Problem: Reverse engineer the 20000 operators using 1400 queries: fn(a0,,an):=((((a0 op1 a1) op2 a2) op3 a3)opn an)mod109+7
  • First, solve the problem for 15 operators with a single query 0,q1,,q15.
  • Use this to find all operators in 20000/15<1400 queries.
  • Example with 30 operators:

  • We consider the case with 15 operators.
  • Let 0,q1,,q15 where qi is random in {1,,109+6}.
  • For all 215 possibilities for the 15 operators, compute the query outcome.
  • If all outcomes are distinct (mod109+7) we have a lookup table.
  • If not, repeat with a new random query.

Comments

There are no comments at the moment.