Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
I was able to do all the problems but not during the contest unfortunately.
wow!! your intuiton to problem E was amazing!!
Incredible binary search in problem G2, thanks bro
your G2 approach is so smart!!!
thanks for uploading bro , you explain very precisely
Please make a video on setup of your Sublime with competitive companion
Could you please mention extentions you are using, like copying sample cases , listen to competitive companion and sample accepted or not ?
Was major missing your streams man !!
harisam please upload videos for atcoder beginner this latest one i am ur biggest follower it would really be of immense help
Need a video of your sublime setup...
I solved E using DP, but your solution is very nice!
can you share your solution
can you share your solution?
@@erenyeager4452 void solve() { int n; cin >> n; vector A(n); for (auto &a: A) cin >> a; vector dp(n + 1); dp[n][0] = 0; dp[n][1] = 0; dp[n - 1][0] = A[n - 1]; dp[n - 1][1] = 0; for (int i = n - 2; i >= 0; i--) { if (i != n - 2) { dp[i][1] = -A[i] + max(dp[i + 1][0] - 2*A[i + 1], dp[i + 1][1] + 2*A[i + 1]); dp[i][0] = A[i] + max(dp[i + 1][0], dp[i + 1][1]); } else { dp[i][0] = A[i] + A[i + 1]; dp[i][1] = -A[i] - A[i + 1]; } } cout
Actually in the first 5 mins the Codeforces main website was down so I had to login to the alternative sites ,hence the time 3 mins was wasted till I was able to solve first 4 problems within 30 mins.Anyone else faced the same problem?
yeah, its a common problm in div 4 contests. 30K ppl gave contest
@@noobnessmee Yes even with 3000 rank only +50 delta,it shows that how tough competition is there in div 4 rounds
Really loved❤ your all explanation and implementation .plz doing this type long video .
Can you also upload the codes for all these questions
good stream
keep it up
can anyone tell me was this contest unrated ?
Hey there, I see there are multiple dark theme mods available for codeforces and yours is better, could you suggest how can we use it?
Extension dark reader
For those asking about how I automatically parse and run test cases, you can watch this video: ruclips.net/video/gg1cwWMnLhc/видео.html
Why n-1
1st like
Divya kon hai 😂
🌚
I was able to do all the problems but not during the contest unfortunately.
wow!! your intuiton to problem E was amazing!!
Incredible binary search in problem G2, thanks bro
your G2 approach is so smart!!!
thanks for uploading bro , you explain very precisely
Please make a video on setup of your Sublime with competitive companion
Could you please mention extentions you are using, like copying sample cases , listen to competitive companion and sample accepted or not ?
Was major missing your streams man !!
harisam please upload videos for atcoder beginner this latest one i am ur biggest follower it would really be of immense help
Need a video of your sublime setup...
I solved E using DP, but your solution is very nice!
can you share your solution
can you share your solution?
@@erenyeager4452
void solve() {
int n;
cin >> n;
vector A(n);
for (auto &a: A) cin >> a;
vector dp(n + 1);
dp[n][0] = 0;
dp[n][1] = 0;
dp[n - 1][0] = A[n - 1];
dp[n - 1][1] = 0;
for (int i = n - 2; i >= 0; i--) {
if (i != n - 2) {
dp[i][1] = -A[i] + max(dp[i + 1][0] - 2*A[i + 1], dp[i + 1][1] + 2*A[i + 1]);
dp[i][0] = A[i] + max(dp[i + 1][0], dp[i + 1][1]);
}
else {
dp[i][0] = A[i] + A[i + 1];
dp[i][1] = -A[i] - A[i + 1];
}
}
cout
Actually in the first 5 mins the Codeforces main website was down so I had to login to the alternative sites ,hence the time 3 mins was wasted till I was able to solve first 4 problems within 30 mins.Anyone else faced the same problem?
yeah, its a common problm in div 4 contests. 30K ppl gave contest
@@noobnessmee Yes even with 3000 rank only +50 delta,it shows that how tough competition is there in div 4 rounds
Really loved❤ your all explanation and implementation .
plz doing this type long video .
Can you also upload the codes for all these questions
good stream
keep it up
can anyone tell me was this contest unrated ?
Hey there, I see there are multiple dark theme mods available for codeforces and yours is better, could you suggest how can we use it?
Extension dark reader
For those asking about how I automatically parse and run test cases, you can watch this video: ruclips.net/video/gg1cwWMnLhc/видео.html
Why n-1
1st like
Divya kon hai 😂
🌚