obsolete's blog

By obsolete, 12 years ago, In English

I find that there are many very good blog posts having tutorials on various data structures / algorithms. But they are spread out and there is no one way to find them all. So let's post as comments, the CF blog tutorials we have found interesting...

PS: I'm not talking about match "Editorials". I'm talking about articles like this and this for example

Thanks.

  • Vote: I like it
  • +13
  • Vote: I do not like it

| Write comment?
»
12 years ago, hide # |
Rev. 2  
Vote: I like it +1 Vote: I do not like it
»
12 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
»
11 years ago, hide # |
Rev. 3  
Vote: I like it 0 Vote: I do not like it

Blog Entry for list of Tutorials: http://codeforces.me/blog/entry/13529

»
10 years ago, hide # |
 
Vote: I like it -24 Vote: I do not like it

How to change problemset language to mongolia and add mongolian flag??? please help me???

»
10 years ago, hide # |
Rev. 3  
Vote: I like it 0 Vote: I do not like it
»
10 years ago, hide # |
Rev. 2  
Vote: I like it +10 Vote: I do not like it
  • »
    »
    10 years ago, hide # ^ |
     
    Vote: I like it +3 Vote: I do not like it

    Also , i request anybody to upload a link of a good tutorial that explains dynamic programming using bitmasking in detail . Thanx.

    • »
      »
      »
      10 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      For dp on bitmask, you just have one of the dimensions be 2^n, and for each transition, you update that bitmask with &. Ex. if you had bitmask state 10011, and you add item 3 to the set, then new bitmask is 11011, and you just update the dp.