Quake's blog

By Quake, history, 9 years ago, In English

Hey guys, I was looking at solution to the problem BITS: http://codeforces.com/contest/484/problem/A . I found a line of code i couldn't understand: for(ll i = x ; i <= y ; i += ( ~ i& -~ i)) ans = i;

what does ( ~ i & -~ i ) do ?

Thank You

Full text and comments »

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

By Quake, history, 9 years ago, In English

Hey guys,I was doing the problem A. Who Is The Winner? http://codeforces.com/gym/100712/attachments/download/3454/acm-amman-collegiate-programming-contest-en.pdf My solution is working in my computer but is showing Runtime error upon submission

include <bits/stdc++.h>

using namespace std;
    bool comp(const pair<int,int> &a,const pair<int,int> &b)
    {
        if(a.first>b.first)
            return a.first>b.first;
        else if(a.first<b.first)
            return a.first<b.first;
            else
            {
                return a.second<b.second;
            }
    }
    map<pair<int,int>,string>m;

    int main()
    {


       int n,t;
       cin>>t;
       while(t--)
       {
           int a,b;
           cin>>n;
           pair<int,int>p[100];string s;
           for(int i=0;i<n;++i)
           {
               cin>>s;
               cin>>a>>b;
               p[i].first=a;p[i].second=b;
               m[p[i]]=s;
           }
           sort(p,p+n,comp);
           cout<<m[p[0]]<<"\n";m.clear();


       }


             return 0;


    }

Can someone help me??

Full text and comments »

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

By Quake, 9 years ago, In English

What are some of the useful c++ commands or hacks helpful in competitive programming?

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it