Hey guys, I was looking at solution to the problem BITS: http://codeforces.me/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 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | atcoder_official | 161 |
3 | Um_nik | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
Hey guys, I was looking at solution to the problem BITS: http://codeforces.me/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://codeforces.me/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 |
---|