Interactive and Communication Problems
Author: Andi Qu
Some tips and tricks
In this module, we assume that "interactive" means problems that allow a limited number of queries and "communication" means problems about communicating between two separate programs.
Interactive Problems
Tip 1: Exploit the Limits
Since almost all interactive problems have a limit on the number of queries you may ask, you should use that limit to guide your thinking. There's no point in trying to come up with a solution that uses queries when the limit is !
There are three types of interactive problems:
- Problems that directly tell you the target complexity of your solution (e.g. IOI 2014 Rail).
- Problems that only tell you the maximum number of queries you may use (e.g. IOI 2013 Cave).
- Problems that have a hidden limit on the number of queries (e.g. IOI 2015 Scales).
The first type is nice because we get an idea of what our solution should look like.
The second type is slightly less nice, but we can still approximate the target complexity (e.g. and queries).
The third type is the least nice, but fortunately, we can sometimes still figure out the hidden limit. For example, in problems with relative scoring (like IOI 2015 Scales), we can submit a solution that uses a fixed number of queries for each input and then reverse-engineer the limit from our score.
Tip 2: Divide and Conquer
In most interactive problems, the solution is to divide and conquer. This is usually either binary search ( queries) or something like merge sort ( queries)
Whenever you see large input limits and small query limits, you should immediately think of binary search.
Focus Problem – read through this problem before continuing!
In this problem, we have and . Notice how - this suggests that we should binary search.
Indeed, that's the solution - try to come up with it yourself!
Solution
Problems
Status | Source | Problem Name | Difficulty | Tags | Solution | URL |
---|---|---|---|---|---|---|
IOI | Easy | External Sol | ||||
IOI | Easy | External Sol | ||||
IOI | Normal | External Sol | ||||
IOI | Normal | External Sol | ||||
APIO | Normal | |||||
CEOI | Hard | External Sol | ||||
IOI | Hard | External Sol | ||||
IOI | Hard | External Sol | ||||
IOI | Very Hard | External Sol | ||||
IOI | Very Hard | External Sol | ||||
IOI | Very Hard | External Sol | ||||
APIO | Very Hard |
Communication Problems
Tip 1: Don't Send Everything
Don't worry about not being able to send all the available information - in most cases, you shouldn't be able to!
Focus Problem – read through this problem before continuing!
In this problem, we're asked to store and compare an integer with several other integers.
Since these numbers can go up to , we can't just naively store and access (since that would take 24 operations).
Luckily, we can still store sufficient information about - just not in binary!
Solution
Tip 2: Brute Force
Sometimes, the amount of information that we can send is (slightly) more than the amount of information we need to decode.
In this case, we can simply map each piece of information we want to decode to a piece of information that we can send.
Focus Problem – read through this problem before continuing!
In this problem, we want to encode and decode an array of 64 integers less than 256 using an unordered sequence of 320 integers less than 256.
The number of arrays of 64 integers less than 256 is slightly less than the number of increasing sequences of 320 integers less than 256, so we can just map each array to an increasing sequence (using bignums) and send that sequence.
Tip 3: XOR
XOR has a nice property where . This lets us solve many problems where the data sent is corrupted or the receiver doesn't know what data the sender sent.
Focus Problem – read through this problem before continuing!
Solution
Problems
Status | Source | Problem Name | Difficulty | Tags | Solution | URL |
---|---|---|---|---|---|---|
IOI | Easy | |||||
CEOI | Normal | |||||
JOI | Normal | |||||
IOI | Normal | External Sol | ||||
IOI | Normal | External Sol | ||||
JOI | Normal | |||||
JOI | Hard | View Solution | ||||
JOI | Hard | External Sol | ||||
JOI | Very Hard | View Solution |
CEOI tasks can be found here.
Module Progress:
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!