ID NAME QUALITY USERS ACC % DIFFICULTY C I
9493 Advanced Fruits   92 2220
19
16
19301 Operators (new ver)   3 40
38
17
28587 A problem of Backtracking   5 530
6
12
27182 Easy modified sudoku   4 295
17
12
35337 Faketorial Hashing   1 10
34
34
17406 Cheating a Boolean Tree   5 110
23
15
31894 House Buying Optimizations   6
36936 K-Divisors   2 8
34
34
1538 Making Jumps   11 1430
16
15
15609 Spiky Mazes   21 930
15
12
34973 Yet Another Subset Sum Problem   2 3
26
34
4525 Digger Octaves   6 369
17
21
224 Vonny and her dominos   6 662
8
8

#backtracking

Backtracking is a general algorithm for finding all (or some) solutions to a computational problem that incrementally builds candidates to the solutions, and abandons (backtracks) each partial candidate as soon as it is able to determine that it cannot be completed to a valid solution

https://en.wikipedia.org/wiki/Backtracking http://web.cse.ohio-state.edu/~gurari/course/cis680/cis680Ch19.html - backtracking algorithms http://www.geeksforgeeks.org/tag/backtracking/