~The D4 Rivalry~

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • trumaestro
    I don't get no respect
    FFR Simfile Author
    • Jun 2006
    • 1332

    #121
    Re: ~The D4 Rivalry~







    Not very happy with most of these. I know I can do better.

    Comment

    • Doug31
      Falcon Paaaauuuunch!!!!!!
      FFR Simfile Author
      • Jun 2004
      • 6811

      #122
      Re: ~The D4 Rivalry~

      Originally posted by arcnmx
      I was bored, wat
      Code:
      stocking ~ $ javac Main.java; xclip -o | java -classpath . Main 
      D9
      I'm not sure I understand. When I copy and paste your level ranks into it, it says you're D5 for me. But it could have bugs if there are other things it doesn't expect that appear on the page.

      Also updated.

      Comment

      • HalfStep
        Can't AAA anything
        • Sep 2007
        • 1391

        #123
        Re: ~The D4 Rivalry~

        Tried running your code and it reminded me why I dropped out of comp sci lol. Mind doing it for me, Eclipse is being a load of trash. Thanks ^^

        Although from what I'm seeing it's just adding Top 2 AAA, Top 2 SDG and Top 2 FCs's difficulties together lol

        4th Official Tournament - D1 34th Place
        5th Official Tournament - D3 Last Place
        8th Official Tournament - D3 3rd Place
        TSR's Summer Golf Tournament - D4 2nd Place
        FFR Multiplayer Tournament 2013 - D5 12th Place
        YoshL's Tournament of Mediocrity - 2nd Place
        TSR's Rates Tournament - Standard 2nd Place
        DRG's Team Tournament - Intermediate 1st Place
        9th Official FFR Tournament - D5 35th Place

        Comment

        • VisD
          FFR Simfile Author
          FFR Simfile Author
          • Jun 2007
          • 1196

          #124
          Re: ~The D4 Rivalry~

          oooooh a d4 rivalry i should join in






          ok this one surprised me, i usually suck at this too hard to even FC it


          /wrist
          Last edited by VisD; 06-29-2013, 07:04 AM.


          Comment

          • TheSaxRunner05
            The Doctor
            • Apr 2006
            • 6144

            #125
            Re: ~The D4 Rivalry~

            VisD too stronk


            Comment

            • trumaestro
              I don't get no respect
              FFR Simfile Author
              • Jun 2006
              • 1332

              #126
              Re: ~The D4 Rivalry~



              Knew I forgot one. Staying consistently inconsistent as always.


              Last edited by trumaestro; 06-29-2013, 09:35 AM.

              Comment

              • TheSaxRunner05
                The Doctor
                • Apr 2006
                • 6144

                #127
                Re: ~The D4 Rivalry~

                Stahp bearing ma'scoarz peeps


                Comment

                • James May
                  FFR Player
                  • Oct 2012
                  • 3817

                  #128
                  Re: ~The D4 Rivalry~

                  o...gonna update all these in a while @_@

                  edit: updated to here.
                  Last edited by James May; 06-29-2013, 07:07 PM.
                  bananas


                  Comment

                  • Doug31
                    Falcon Paaaauuuunch!!!!!!
                    FFR Simfile Author
                    • Jun 2004
                    • 6811

                    #129
                    Re: ~The D4 Rivalry~

                    Originally posted by HalfStep
                    Tried running your code and it reminded me why I dropped out of comp sci lol. Mind doing it for me, Eclipse is being a load of trash. Thanks ^^

                    Although from what I'm seeing it's just adding Top 2 AAA, Top 2 SDG and Top 2 FCs's difficulties together lol
                    Yes, that's what it does. I know it's not that good of an indicator but I didn't feel like making it more complicated than that, yet. Maybe I will sometime though. The FC part of it is especially bad since it gives a lot of points to people that mash FC'd hard stuff that equally good people that didn't wouldn't get.

                    Comment

                    • James May
                      FFR Player
                      • Oct 2012
                      • 3817

                      #130
                      Re: ~The D4 Rivalry~

                      the top FCs should be unmashed instead of just a general top FCs.
                      bananas


                      Comment

                      • Doug31
                        Falcon Paaaauuuunch!!!!!!
                        FFR Simfile Author
                        • Jun 2004
                        • 6811

                        #131
                        Re: ~The D4 Rivalry~

                        Okay, I'll try to make it that way. Like maybe under 30 boos or something like that? Gonna need to lower the requirements a bit if I do that.

                        Edit: Fixed version:
                        import java.util.Scanner;


                        public class Main {
                        public static void main (String[] args) {
                        int bestAAA1 = 0;
                        int bestAAA2 = 0;
                        int bestSDG1 = 0;
                        int bestSDG2 = 0;
                        int bestFC1 = 0;
                        int bestFC2 = 0;
                        Scanner console = new Scanner(System.in);
                        while (console.hasNextLine()) {
                        String line = console.nextLine();
                        if (line.equalsIgnoreCase("contact us | site credits | rss feed")) {
                        break;
                        }
                        Scanner s = new Scanner(line);
                        if (!s.hasNext()) {
                        continue;
                        }
                        s.next();
                        if (!s.hasNextInt()) {
                        continue;
                        }
                        int difficulty = s.nextInt();
                        String current = "";
                        while (s.hasNext()) {
                        current = s.next();
                        if ((1 == current.length() || current.length() > 6) && (current.endsWith("0*") || current.endsWith("5*") ||current.endsWith("0") || current.endsWith("5"))) {
                        break;
                        }
                        }
                        if (!current.endsWith("*")) {
                        continue;
                        }
                        int perfects = s.nextInt();
                        int goods = s.nextInt();
                        int averages = s.nextInt();
                        int misses = s.nextInt();
                        int boos = s.nextInt();
                        if (misses == 0 && boos <= 30) {
                        //FC
                        if (bestFC1 <= bestFC2 && bestFC1 < difficulty) {
                        bestFC1 = difficulty;
                        } else if (bestFC1 > bestFC2 && bestFC2 < difficulty) {
                        bestFC2 = difficulty;
                        }
                        }

                        if (goods + 1.8*averages + 20.0/275*boos < 10) {
                        //SDG
                        if (bestSDG1 <= bestSDG2 && bestSDG1 < difficulty) {
                        bestSDG1 = difficulty;
                        } else if (bestSDG1 > bestSDG2 && bestSDG2 < difficulty) {
                        bestSDG2 = difficulty;
                        }
                        }
                        if (goods == 0 && averages == 0 && misses == 0 && boos == 0) {
                        //AAA
                        if (bestAAA1 <= bestAAA2 && bestAAA1 < difficulty) {
                        bestAAA1 = difficulty;
                        } else if (bestAAA1 > bestAAA2 && bestAAA2 < difficulty) {
                        bestAAA2 = difficulty;
                        }
                        }
                        }

                        int score = bestAAA1 + bestAAA2 + bestSDG1 + bestSDG2 + bestFC1 + bestFC2;
                        if (score >= 583) {
                        System.out.println("D9");
                        } else if (score >= 569) {
                        System.out.println("D8");
                        } else if (score >= 546) {
                        System.out.println("D7");
                        } else if (score >= 505) {
                        System.out.println("D6");
                        } else if (score >= 445) {
                        System.out.println("D5");
                        } else if (score >= 380) {
                        System.out.println("D4");
                        } else if (score >= 315) {
                        System.out.println("D3");
                        } else if (score >= 175) {
                        System.out.println("D2");
                        } else {
                        System.out.println("D1");
                        }
                        }
                        }


                        Maybe a bit too hard to reach D5 this way, since you have to actually FC hard to FC songs without mashing, but it's pretty close.
                        Last edited by Doug31; 06-29-2013, 07:33 PM.

                        Comment

                        • Jonlovesddr
                          h
                          • Sep 2008
                          • 1631

                          #132
                          Re: ~The D4 Rivalry~

                          when do we get the new songs broski!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

                          Comment

                          • James May
                            FFR Player
                            • Oct 2012
                            • 3817

                            #133
                            Re: ~The D4 Rivalry~

                            Originally posted by Doug31
                            Okay, I'll try to make it that way. Like maybe under 30 boos or something like that? Gonna need to lower the requirements a bit if I do that.
                            yeah. Like that. sorry emulord, your mashed fcs aren't welcomed here huehue.
                            bananas


                            Comment

                            • Doug31
                              Falcon Paaaauuuunch!!!!!!
                              FFR Simfile Author
                              • Jun 2004
                              • 6811

                              #134
                              Re: ~The D4 Rivalry~

                              Okay, requirements lowered slightly, and now FCs have to be less than or equal to 30 boos. So you get a lot of room for error as long as you're not mashing. New songs go up at midnight server time, which is in about 3.5 hours.

                              Comment

                              • James May
                                FFR Player
                                • Oct 2012
                                • 3817

                                #135
                                Re: ~The D4 Rivalry~

                                Originally posted by Doug31
                                Okay, requirements lowered slightly, and now FCs have to be less than or equal to 30 boos. So you get a lot of room for error as long as you're not mashing. New songs go up at midnight server time, which is in about 3.5 hours.
                                yeah not gonna have time on the others (and not being able to fix my bf on eternal drain oops) since I'm not home oops. But I'll try next weeks songs whenever I have the chance.
                                bananas


                                Comment

                                Working...