https://codeforces.com/problemset/problem/1016/A
Why should I modulo the variable ? I couldn't understand the mathematical things they have used in the tutorial.
# | User | Rating |
---|---|---|
1 | tourist | 3682 |
2 | ecnerwala | 3603 |
3 | Benq | 3549 |
4 | Radewoosh | 3494 |
5 | Petr | 3452 |
6 | ksun48 | 3413 |
7 | maroonrk | 3406 |
8 | Miracle03 | 3314 |
9 | scott_wu | 3313 |
10 | Um_nik | 3299 |
# | User | Contrib. |
---|---|---|
1 | 1-gon | 214 |
2 | Errichto | 188 |
3 | awoo | 187 |
3 | rng_58 | 187 |
5 | SecondThread | 184 |
6 | Um_nik | 177 |
7 | Ashishgup | 176 |
8 | maroonrk | 173 |
9 | antontrygubO_o | 171 |
10 | -is-this-fft- | 169 |
https://codeforces.com/problemset/problem/1016/A
Why should I modulo the variable ? I couldn't understand the mathematical things they have used in the tutorial.
https://codeforces.com/problemset/problem/903/A
In the tutorial, they are saying "For example, you could just iterate on the values of a and b from 0 to 33 and check if 3a + 7b = x." Why is it 33 and no other number ? Please explain it to me.
https://codeforces.com/problemset/problem/412/B
I couldn't understand the logic behind the first tutorial (**not** the bruteforce one). Can anyone help me?
https://codeforces.com/contest/1398/problem/A
I couldn't understand the tutorial of the problem, particularly the first line (The triangle with side a >= b >= c is degenerate if a >= b + c. So we have to maximize the length of the longest side (a) and minimize the total length of other sides (b + c).)
Please explain it to me.
https://codeforces.com/contest/1345/problem/A
I have read the editorial and tried to implement a code. But it was incorrect. Can anybody please help me?
https://codeforces.com/problemset/problem/1323/A
I have found something confusing in this problem.
This is the solution mohammadmahdi.hamidzadeh wrote.
using namespace std;
int main(){ int t;cin>>t;while(t--){ int n,a=0,x;cin>>n; for(int i=1;i<=n;i++){ cin>>x; if(x%2==0)a=i; } if(a)cout<<1<<endl<<a<<endl; else{ if(n==1)cout<<-1<<endl; else cout<<2<<endl<<1<<" "<<2<<endl; } } }
I changed a little bit in this code.
using namespace std;
int main(){ int t; cin>>t; while(t--){ int n,a = 0,x; cin>>n; for(int i=1;i<=n;i++){ cin>>x; if(x%2==0)a=i; } if(a)cout<<1<<endl<<a<<endl; else{ if(n==1)cout<<-1<<endl; else cout<<2<<endl<<1<<" "<<2<<endl; } } return 0; } // This is my code
But after this change, the outputs I am getting are wrong. I cannot understand this.
My question is : Where did I messed up?
https://codeforces.com/problemset/problem/1323/A
I have been trying for a long time but couldn't get a correct code for this problem. Is there anybody who can help me in solving this problem ?
https://codeforces.com/problemset/problem/1405/A
In this problem, I couldn't understand the "adjacent" thing. Can anybody please help me ? Thanks in advance.
https://codeforces.com/problemset/problem/1180/A
Isn't the time complexity of the problem I mentioned above is o(1) ? In the tutorial they are saying o(n) ?
https://codeforces.com/problemset/problem/1250/F
Can anybody please help me in solving this problem?
Name |
---|