https://codeforces.net/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 | 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 | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
https://codeforces.net/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.net/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.net/problemset/problem/412/B
I couldn't understand the logic behind the first tutorial (**not** the bruteforce one). Can anyone help me?
https://codeforces.net/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.net/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.net/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.net/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.net/problemset/problem/1405/A
In this problem, I couldn't understand the "adjacent" thing. Can anybody please help me ? Thanks in advance.
https://codeforces.net/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.net/problemset/problem/1250/F
Can anybody please help me in solving this problem?
Name |
---|