Hey guys, I was looking at solution to the problem BITS: http://mirror.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
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 146 |
| 3 | Proof_by_QED | 146 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
Hey guys, I was looking at solution to the problem BITS: http://mirror.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
Hey guys,I was doing the problem A. Who Is The Winner? http://mirror.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
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??
What are some of the useful c++ commands or hacks helpful in competitive programming?
| Name |
|---|


