I've seen "offline solution" a lot on codeforces. What does it mean? Is it a solution that precomputes answers?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
I've seen "offline solution" a lot on codeforces. What does it mean? Is it a solution that precomputes answers?
Name |
---|
If the problem involve processing queries then there are online solutions and offline solution
online means that your solution can process each query before reading the the queries that come after it
offline means that your solution reads all queries then process them , probably you sort the queries in some order so that you can process them faster
Can we proccess queries with update in offline mode?
not in general but there are methods with sqrt decomposition of queries that allow you to solve the problem "semi offline"
Can u elaborate it a little or provide a usefull link?
Yes, sure. Just make sure you don't change the order. A simple example is performing coordinate compression on all values after reading the queries and then processing them in the same order with the compressed values.
You may want to read this to know more about where offline algorithms can be used, and how!