Kattis Problem 'Mali'Shortest path on a maze with keys and doorsComputing the de Bruijn sequenceGoogle Code...

"which" command doesn't work / path of Safari?

Why is the design of haulage companies so “special”?

What is the command to reset a PC without deleting any files

Simulate Bitwise Cyclic Tag

Why was the small council so happy for Tyrion to become the Master of Coin?

Are white and non-white police officers equally likely to kill black suspects?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

Infinite past with a beginning?

A Journey Through Space and Time

Prevent a directory in /tmp from being deleted

Why is an old chain unsafe?

How do you conduct xenoanthropology after first contact?

If Manufacturer spice model and Datasheet give different values which should I use?

Can you lasso down a wizard who is using the Levitate spell?

Calculus Optimization - Point on graph closest to given point

Motorized valve interfering with button?

Why is this code 6.5x slower with optimizations enabled?

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

least quadratic residue under GRH: an EXPLICIT bound

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

How to make payment on the internet without leaving a money trail?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

A function which translates a sentence to title-case

New order #4: World



Kattis Problem 'Mali'


Shortest path on a maze with keys and doorsComputing the de Bruijn sequenceGoogle Code Jam Google String problem: a sequence resulting from bit flips and reversalsGSS4 - Segment Tree implementation 2Curvesort in C++Kattis challenge to finding the number of different elements in a setPython solution to Code Jam's 'Rounding Error'Finding intersting path in a graphKattis prime reduction challengeGreetingCard problem with Coordinates






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







2












$begingroup$


I wrote a solution to the Mali problem on Kattis:




Given inputs a1, a2, a3, …, an and b1, b2, b3, …, bn, determine n pairings (ai, bj) such that each number in the A sequence is used in exactly one pairing, each number in the B sequence is used in exactly one pairing, and the maximum of all sums ai + bj is minimal.



Input



The first line of input contains a single integer N (1 ≤ N ≤ 100000), the number of rounds.



The next N lines contain two integers A and B (1 ≤ A, B ≤ 100), the numbers given in that round.



Output



The output consists of N lines, one for each round. Each line should contain the smallest maximal sum for that round.




I'm fairly sure I can get the right answer 100% of the time, but the code exceeds the time limit of one second. I was wondering if you could help me optimize my code to help it run in time, or if you could explain why my code is inefficient.



#include <iostream>
#include <vector>

int main() {
int x, c = 0, big = 0;
std::cin >> x;
std::vector<int> as, bs;
for (int i = 0; i < x; i++) {
bool founda = false, foundb = false;
int a, b;
std::cin >> a >> b;
c++;
if (c == 1) {
as.push_back(a);
bs.push_back(b);
}
else {
for (int i = 0; i < c; i++) {
if (as[i] < a || i == c-1) {
as.insert(as.begin()+i, a);
founda = true;
}
if (bs[i] < b || i == c-1) {
bs.insert(bs.begin()+i, b);
foundb = true;
}
if (founda == true && foundb == true)
break;
}
}
for (int i = 0; i < c; i++) {
if (as[i] + bs[c-1-i] > big)
big = as[i] + bs[c-1-i];
}
std::cout << big << std::endl;
}
}









share|improve this question









New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$












  • $begingroup$
    (Programming challenges with "online judges" are carefully crafted with one good solution in mind that can be coded in, say, one hour. Problem parameters (size) are chosen such that asymptotically inferior approaches don't complete within the time limit. The implementation platform (language) is figured in: you need to find a solution that re-uses information "between sums/pairs".)
    $endgroup$
    – greybeard
    Apr 2 at 6:21










  • $begingroup$
    (For lack of code comments, I didn't try to understand your approach upfront. Integrating input and both preparatory sorts is thinking out-of-the-box!)
    $endgroup$
    – greybeard
    Apr 2 at 6:27


















2












$begingroup$


I wrote a solution to the Mali problem on Kattis:




Given inputs a1, a2, a3, …, an and b1, b2, b3, …, bn, determine n pairings (ai, bj) such that each number in the A sequence is used in exactly one pairing, each number in the B sequence is used in exactly one pairing, and the maximum of all sums ai + bj is minimal.



Input



The first line of input contains a single integer N (1 ≤ N ≤ 100000), the number of rounds.



The next N lines contain two integers A and B (1 ≤ A, B ≤ 100), the numbers given in that round.



Output



The output consists of N lines, one for each round. Each line should contain the smallest maximal sum for that round.




I'm fairly sure I can get the right answer 100% of the time, but the code exceeds the time limit of one second. I was wondering if you could help me optimize my code to help it run in time, or if you could explain why my code is inefficient.



#include <iostream>
#include <vector>

int main() {
int x, c = 0, big = 0;
std::cin >> x;
std::vector<int> as, bs;
for (int i = 0; i < x; i++) {
bool founda = false, foundb = false;
int a, b;
std::cin >> a >> b;
c++;
if (c == 1) {
as.push_back(a);
bs.push_back(b);
}
else {
for (int i = 0; i < c; i++) {
if (as[i] < a || i == c-1) {
as.insert(as.begin()+i, a);
founda = true;
}
if (bs[i] < b || i == c-1) {
bs.insert(bs.begin()+i, b);
foundb = true;
}
if (founda == true && foundb == true)
break;
}
}
for (int i = 0; i < c; i++) {
if (as[i] + bs[c-1-i] > big)
big = as[i] + bs[c-1-i];
}
std::cout << big << std::endl;
}
}









share|improve this question









New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$












  • $begingroup$
    (Programming challenges with "online judges" are carefully crafted with one good solution in mind that can be coded in, say, one hour. Problem parameters (size) are chosen such that asymptotically inferior approaches don't complete within the time limit. The implementation platform (language) is figured in: you need to find a solution that re-uses information "between sums/pairs".)
    $endgroup$
    – greybeard
    Apr 2 at 6:21










  • $begingroup$
    (For lack of code comments, I didn't try to understand your approach upfront. Integrating input and both preparatory sorts is thinking out-of-the-box!)
    $endgroup$
    – greybeard
    Apr 2 at 6:27














2












2








2





$begingroup$


I wrote a solution to the Mali problem on Kattis:




Given inputs a1, a2, a3, …, an and b1, b2, b3, …, bn, determine n pairings (ai, bj) such that each number in the A sequence is used in exactly one pairing, each number in the B sequence is used in exactly one pairing, and the maximum of all sums ai + bj is minimal.



Input



The first line of input contains a single integer N (1 ≤ N ≤ 100000), the number of rounds.



The next N lines contain two integers A and B (1 ≤ A, B ≤ 100), the numbers given in that round.



Output



The output consists of N lines, one for each round. Each line should contain the smallest maximal sum for that round.




I'm fairly sure I can get the right answer 100% of the time, but the code exceeds the time limit of one second. I was wondering if you could help me optimize my code to help it run in time, or if you could explain why my code is inefficient.



#include <iostream>
#include <vector>

int main() {
int x, c = 0, big = 0;
std::cin >> x;
std::vector<int> as, bs;
for (int i = 0; i < x; i++) {
bool founda = false, foundb = false;
int a, b;
std::cin >> a >> b;
c++;
if (c == 1) {
as.push_back(a);
bs.push_back(b);
}
else {
for (int i = 0; i < c; i++) {
if (as[i] < a || i == c-1) {
as.insert(as.begin()+i, a);
founda = true;
}
if (bs[i] < b || i == c-1) {
bs.insert(bs.begin()+i, b);
foundb = true;
}
if (founda == true && foundb == true)
break;
}
}
for (int i = 0; i < c; i++) {
if (as[i] + bs[c-1-i] > big)
big = as[i] + bs[c-1-i];
}
std::cout << big << std::endl;
}
}









share|improve this question









New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$




I wrote a solution to the Mali problem on Kattis:




Given inputs a1, a2, a3, …, an and b1, b2, b3, …, bn, determine n pairings (ai, bj) such that each number in the A sequence is used in exactly one pairing, each number in the B sequence is used in exactly one pairing, and the maximum of all sums ai + bj is minimal.



Input



The first line of input contains a single integer N (1 ≤ N ≤ 100000), the number of rounds.



The next N lines contain two integers A and B (1 ≤ A, B ≤ 100), the numbers given in that round.



Output



The output consists of N lines, one for each round. Each line should contain the smallest maximal sum for that round.




I'm fairly sure I can get the right answer 100% of the time, but the code exceeds the time limit of one second. I was wondering if you could help me optimize my code to help it run in time, or if you could explain why my code is inefficient.



#include <iostream>
#include <vector>

int main() {
int x, c = 0, big = 0;
std::cin >> x;
std::vector<int> as, bs;
for (int i = 0; i < x; i++) {
bool founda = false, foundb = false;
int a, b;
std::cin >> a >> b;
c++;
if (c == 1) {
as.push_back(a);
bs.push_back(b);
}
else {
for (int i = 0; i < c; i++) {
if (as[i] < a || i == c-1) {
as.insert(as.begin()+i, a);
founda = true;
}
if (bs[i] < b || i == c-1) {
bs.insert(bs.begin()+i, b);
foundb = true;
}
if (founda == true && foundb == true)
break;
}
}
for (int i = 0; i < c; i++) {
if (as[i] + bs[c-1-i] > big)
big = as[i] + bs[c-1-i];
}
std::cout << big << std::endl;
}
}






c++ programming-challenge time-limit-exceeded






share|improve this question









New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Apr 2 at 5:41









200_success

131k17157422




131k17157422






New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Apr 2 at 5:21









Griffin WongGriffin Wong

132




132




New contributor




Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Griffin Wong is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • $begingroup$
    (Programming challenges with "online judges" are carefully crafted with one good solution in mind that can be coded in, say, one hour. Problem parameters (size) are chosen such that asymptotically inferior approaches don't complete within the time limit. The implementation platform (language) is figured in: you need to find a solution that re-uses information "between sums/pairs".)
    $endgroup$
    – greybeard
    Apr 2 at 6:21










  • $begingroup$
    (For lack of code comments, I didn't try to understand your approach upfront. Integrating input and both preparatory sorts is thinking out-of-the-box!)
    $endgroup$
    – greybeard
    Apr 2 at 6:27


















  • $begingroup$
    (Programming challenges with "online judges" are carefully crafted with one good solution in mind that can be coded in, say, one hour. Problem parameters (size) are chosen such that asymptotically inferior approaches don't complete within the time limit. The implementation platform (language) is figured in: you need to find a solution that re-uses information "between sums/pairs".)
    $endgroup$
    – greybeard
    Apr 2 at 6:21










  • $begingroup$
    (For lack of code comments, I didn't try to understand your approach upfront. Integrating input and both preparatory sorts is thinking out-of-the-box!)
    $endgroup$
    – greybeard
    Apr 2 at 6:27
















$begingroup$
(Programming challenges with "online judges" are carefully crafted with one good solution in mind that can be coded in, say, one hour. Problem parameters (size) are chosen such that asymptotically inferior approaches don't complete within the time limit. The implementation platform (language) is figured in: you need to find a solution that re-uses information "between sums/pairs".)
$endgroup$
– greybeard
Apr 2 at 6:21




$begingroup$
(Programming challenges with "online judges" are carefully crafted with one good solution in mind that can be coded in, say, one hour. Problem parameters (size) are chosen such that asymptotically inferior approaches don't complete within the time limit. The implementation platform (language) is figured in: you need to find a solution that re-uses information "between sums/pairs".)
$endgroup$
– greybeard
Apr 2 at 6:21












$begingroup$
(For lack of code comments, I didn't try to understand your approach upfront. Integrating input and both preparatory sorts is thinking out-of-the-box!)
$endgroup$
– greybeard
Apr 2 at 6:27




$begingroup$
(For lack of code comments, I didn't try to understand your approach upfront. Integrating input and both preparatory sorts is thinking out-of-the-box!)
$endgroup$
– greybeard
Apr 2 at 6:27










1 Answer
1






active

oldest

votes


















3












$begingroup$

You are storing all of the A and B inputs in sorted vectors, basically doing an insertion sort. A few observations (two minor, one major):




  1. The if (c == 1) special case should be eliminated.

  2. Flag variables (founda and foundb) suck. You would be better off writing two separate for loops.


  3. Each time you insert a value, all values beyond the insertion point need to be shifted over to make room for the insertion. That means that constructing as and bs takes O(N2) time altogether — which is unacceptable, since N can be very large.



    However, there are only 100 possible values of A and B. So, do a counting sort instead, building a histogram with 100 buckets. That would be a much more efficient way to represent the same information, using O(N) time and a fixed amount of space.








share|improve this answer









$endgroup$













  • $begingroup$
    Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
    $endgroup$
    – greybeard
    Apr 2 at 6:52












Your Answer





StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");

StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "196"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Griffin Wong is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216695%2fkattis-problem-mali%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









3












$begingroup$

You are storing all of the A and B inputs in sorted vectors, basically doing an insertion sort. A few observations (two minor, one major):




  1. The if (c == 1) special case should be eliminated.

  2. Flag variables (founda and foundb) suck. You would be better off writing two separate for loops.


  3. Each time you insert a value, all values beyond the insertion point need to be shifted over to make room for the insertion. That means that constructing as and bs takes O(N2) time altogether — which is unacceptable, since N can be very large.



    However, there are only 100 possible values of A and B. So, do a counting sort instead, building a histogram with 100 buckets. That would be a much more efficient way to represent the same information, using O(N) time and a fixed amount of space.








share|improve this answer









$endgroup$













  • $begingroup$
    Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
    $endgroup$
    – greybeard
    Apr 2 at 6:52
















3












$begingroup$

You are storing all of the A and B inputs in sorted vectors, basically doing an insertion sort. A few observations (two minor, one major):




  1. The if (c == 1) special case should be eliminated.

  2. Flag variables (founda and foundb) suck. You would be better off writing two separate for loops.


  3. Each time you insert a value, all values beyond the insertion point need to be shifted over to make room for the insertion. That means that constructing as and bs takes O(N2) time altogether — which is unacceptable, since N can be very large.



    However, there are only 100 possible values of A and B. So, do a counting sort instead, building a histogram with 100 buckets. That would be a much more efficient way to represent the same information, using O(N) time and a fixed amount of space.








share|improve this answer









$endgroup$













  • $begingroup$
    Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
    $endgroup$
    – greybeard
    Apr 2 at 6:52














3












3








3





$begingroup$

You are storing all of the A and B inputs in sorted vectors, basically doing an insertion sort. A few observations (two minor, one major):




  1. The if (c == 1) special case should be eliminated.

  2. Flag variables (founda and foundb) suck. You would be better off writing two separate for loops.


  3. Each time you insert a value, all values beyond the insertion point need to be shifted over to make room for the insertion. That means that constructing as and bs takes O(N2) time altogether — which is unacceptable, since N can be very large.



    However, there are only 100 possible values of A and B. So, do a counting sort instead, building a histogram with 100 buckets. That would be a much more efficient way to represent the same information, using O(N) time and a fixed amount of space.








share|improve this answer









$endgroup$



You are storing all of the A and B inputs in sorted vectors, basically doing an insertion sort. A few observations (two minor, one major):




  1. The if (c == 1) special case should be eliminated.

  2. Flag variables (founda and foundb) suck. You would be better off writing two separate for loops.


  3. Each time you insert a value, all values beyond the insertion point need to be shifted over to make room for the insertion. That means that constructing as and bs takes O(N2) time altogether — which is unacceptable, since N can be very large.



    However, there are only 100 possible values of A and B. So, do a counting sort instead, building a histogram with 100 buckets. That would be a much more efficient way to represent the same information, using O(N) time and a fixed amount of space.









share|improve this answer












share|improve this answer



share|improve this answer










answered Apr 2 at 5:59









200_success200_success

131k17157422




131k17157422












  • $begingroup$
    Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
    $endgroup$
    – greybeard
    Apr 2 at 6:52


















  • $begingroup$
    Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
    $endgroup$
    – greybeard
    Apr 2 at 6:52
















$begingroup$
Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
$endgroup$
– greybeard
Apr 2 at 6:52




$begingroup$
Usually a stickler for detail, I commend giving neither more nor less than the principle of (the crucial part of) a good solution.
$endgroup$
– greybeard
Apr 2 at 6:52










Griffin Wong is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















Griffin Wong is a new contributor. Be nice, and check out our Code of Conduct.













Griffin Wong is a new contributor. Be nice, and check out our Code of Conduct.












Griffin Wong is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Code Review Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f216695%2fkattis-problem-mali%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

How do i solve the “ No module named 'mlxtend' ” issue on Jupyter?

Pilgersdorf Inhaltsverzeichnis Geografie | Geschichte | Bevölkerungsentwicklung | Politik | Kultur...