Editing
2015 Dec Silver Problem 2 High Card Wins
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Java === <pre> import java.io.*; import java.util.*; public class highcard { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new FileReader("highcard.in")); PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("highcard.out"))); int n = Integer.parseInt(br.readLine()); boolean[] elsieOwns = new boolean[2*n+1]; for(int i = 0; i < n; i++) { elsieOwns[Integer.parseInt(br.readLine())] = true; } LinkedList<Integer> bessie = new LinkedList<>(); LinkedList<Integer> elsie = new LinkedList<>(); int points = 0; // Loop over the values in increasing order, // the two lists will be in sorted order for(int i = 1; i <= 2*n; i++) { if(elsieOwns[i]) { elsie.add(i); } else { bessie.add(i); } } // While there are cards in both hands, play the round while(!bessie.isEmpty() && !elsie.isEmpty()) { // If Bessie's card can beat Elsie's, she plays it if(bessie.getFirst() > elsie.getFirst()) { points++; elsie.removeFirst(); } // Remove the card Bessie just played, whether she wins or loses bessie.removeFirst(); } pw.println(points); pw.close(); } } </pre>
Summary:
Please note that all contributions to Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
My wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information