473,385 Members | 1,353 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

que teorías o tecnologías me recomiendan para enfrentar este tipo de problemas?

hello people good afternoon
There will be a mathematical theorem that allows solving the problem k: "surveillance" of icpc 2014. What theories or technologies around programming in java recommend me to face this type of problems?






import java.util.ArrayList;

public class Integers {

private ArrayList<Integer> numbers;

public Integers(int a, int b, int limit) {//constructor
this.numbers = new ArrayList<Integer>();

makeList(a, b, limit);
}

public void makeList(int a, int b, int limit) {
if (a < b) {
while (a <= b) {
this.numbers.add(a);
a++;
}
} else {

int aux = 1;
while (aux <= b) {
this.numbers.add(aux);
aux++;
}

int aux2 = a;
while (aux2 <= limit) {
this.numbers.add(aux2);
aux2++;
}

}
}

public void showNumbers() {
for (int x = 0; x < this.numbers.size(); x++) {
System.out.print(this.numbers.get(x) + "\t");
}

}
}
Nov 4 '18 #1
0 1481

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Ariel | last post by:
Buenas, necesito ayuda para auto-actualizar una página, el tema es el siguiente, use por un tiempo lo siguiente: <META HTTP-EQUIV="Refresh" CONTENT="30"> y ahora estoy usando esto: var...
0
by: Oscar22pr | last post by:
QUIERES GANAR DINERO PARA PAGAR TUS DEUDAS??? GASTE 5 MINUTOS DE SU VIDA EN LEER ESTO Y VERA QUE REALMENTE FUNCIONA. LEGALMENTE!!!!!! !!!IMPRIME ESTA HOJA ...YAAAAAAAAAAA!!! Permíteme empezar...
2
by: Paul M. | last post by:
Hello, I would like to maintain build control over a large Access database. Basically build N of the database would have a particular mix of object versions e.g. Build 1.1 contains tblMain (at...
0
by: Luis Esteban Valencia | last post by:
Hello I have this error when I submit the page with the following code. I had never see this kind of errors. Thanks private void btnsubmit_Click(object sender, System.EventArgs e) { ...
0
by: risomarmarques | last post by:
Agora todos os seus sonhos se realizarão! VOCÊ JÁ IMAGINOU GANHAR R$ 30.000,00 EM MENOS DE 4 SEMANAS INVESTINDO APENAS R$ 6,00 - Valor único - não mensal? ACHA IMPOSSÍVEL?? ENTÃO LEIA ESTE...
1
by: David Roza | last post by:
Groups Home | Help | Sign in Web Images Groups News Froogle Maps more » Advanced Groups Search
3
by: firefox | last post by:
Hola amigos yo publico mi aplicacion a través de ClickOnce y todo funciona muy bien, el único problema que tengo es que algunos clientes omiten las publicaciones y para que la aplicacion...
1
by: Vitrium | last post by:
Hola tengo el siguiente problema , me da error en un consulta que en el sql de acces funciona correctamente pero bajo ADOCE 3.1 no. Utilizo la libreria inthehand version 1.2 ya que necesito...
0
by: Ranger | last post by:
TRANSFORME R$12,00 EM R$12.000,00 SÓ VAI TOMAR UM POUCO DO SEU TEMPO E VC Ñ VAI SE ARREPENDER ACREDITE!!! LEIA COM ATENÇÃO. MÉTODO APROVADO PELA REVISTA EXAME Você já imaginou ganhar até R$...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.