_Ramtin_'s blog

By _Ramtin_, history, 8 years ago, In English

Hi everyone

can someone tell me why my submission 16442864 for problem 126B - Пароль gets Run time error ?

Full text and comments »

  • Vote: I like it
  • -10
  • Vote: I do not like it

By _Ramtin_, history, 8 years ago, In English

Hi everyone , I have a question which i faced a lot while implementing a problem and i usually handled it with segment tree but i think it must have an easier way

think that u have a set s

i want to find out number x position in this set

more formally i want s.find(x) — s.begin()

but c++ set can't handle this ! what should i do ? is there any way without using other structures to solve this ?

Full text and comments »

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

By _Ramtin_, history, 9 years ago, In English

Hey guys i need help for solving this problem :

http://codeforces.com/problemset/problem/369/C

my idea was it's better to choose leaves of the tree because if there is a way that is the best and a node is chosen that is not a leave u can continue your way from this node down to the leave and the answer wont decrease

so i put a counter on bad edges and when ever i reached a leaf and the counter is not zero i add the leave to answer

my submission : http://codeforces.com/contest/369/submission/12994706

i dont know what is wrong with this please help !

Full text and comments »

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