622C - Not Equal on a Segment 15943480 It gives TLE on test case number 14!
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3611 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | Radewoosh | 3415 |
| 8 | Um_nik | 3376 |
| 9 | maroonrk | 3361 |
| 10 | XVIII | 3345 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
622C - Not Equal on a Segment 15943480 It gives TLE on test case number 14!
Given an array of integers and a range find the count of subarrays whose sum lies in the given range. Do so in less than O(n^2) complexity.
Given a number n, how to perform atmost k swap operations on number's digits to get the largest number. Ex- n=7899, k=2 ans=9987
Given an array of 3 different colored balls, we have to sort it using minimum number of swaps. It could be done in O(n) using 3-pointers and two traversals(one to count no. of occurrences of each color and other to sort). Could this be implemented in one traversal(count is not known before).
Link to problem:- http://www.codechef.com/problems/SUBARRAY
Link to solution:- http://www.codechef.com/viewsolution/7071035 Can anyone tell me the testcase my code gives wrong output for.
int main()
{
//Beauty is in relaxed hard work.
//SSGCA :)
//Keep doing your thing, complexity would turn into simplicity! :)
unsigned short int a=0xffff;
~a;
printf("%x",a);
return 0;
}
Why does this program output 'ffff' and not 0000?
Hey, could anyone please share problems on codeforces based on vertex cover problem. Thanks :)
The problem statement can be found here-> (http://www.codechef.com/DBYZ15/problems/DBYZ15C).
Why do many programmers use assert() function in their codes giving as its argument the answer to be outputed?
| Name |
|---|


