Heim Web-Frontend HTML-Tutorial Codeforces Round #269 (Div. 2) A~D_html/css_WEB-ITnose

Codeforces Round #269 (Div. 2) A~D_html/css_WEB-ITnose

Jun 24, 2016 am 11:57 AM
round


这次的CF除了最后一个都比较简单,

第一次用JAVA写CF.......


Codeforces Round #269 (Div. 2)

A. MUH and Sticks

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Two polar bears Menshykov and Uslada from the St.Petersburg zoo and elephant Horace from the Kiev zoo got six sticks to play with and assess the animals' creativity. Menshykov, Uslada and Horace decided to make either an elephant or a bear from those sticks. They can make an animal from sticks in the following way:

  • Four sticks represent the animal's legs, these sticks should have the same length.
  • Two remaining sticks represent the animal's head and body. The bear's head stick must be shorter than the body stick. The elephant, however, has a long trunk, so his head stick must be as long as the body stick. Note that there are no limits on the relations between the leg sticks and the head and body sticks.
  • Your task is to find out which animal can be made from the given stick set. The zoo keeper wants the sticks back after the game, so they must never be broken, even bears understand it.

    Input

    The single line contains six space-separated integers li (1?≤?li?≤?9) ? the lengths of the six sticks. It is guaranteed that the input is such that you cannot make both animals from the sticks.

    Output

    If you can make a bear from the given set, print string "Bear" (without the quotes). If you can make an elephant, print string "Elephant" (w?thout the quotes). If you can make neither a bear nor an elephant, print string "Alien" (without the quotes).

    Sample test(s)

    input

    4 2 5 4 4 4
    Nach dem Login kopieren

    output

    Bear
    Nach dem Login kopieren

    input

    4 4 5 4 4 5
    Nach dem Login kopieren

    output

    Elephant
    Nach dem Login kopieren

    input

    1 2 3 4 5 6
    Nach dem Login kopieren

    output

    Alien
    Nach dem Login kopieren

    Note

    If you're out of creative ideas, see instructions below which show how to make a bear and an elephant in the first two samples. The stick of length 2 is in red, the sticks of length 4 are in green, the sticks of length 5 are in blue.


    简单题:
    /** * Created by ckboss on 14-9-27. */import java.util.*;public class CF471A {    static int[] a = new int[6];    static int[] num = new int[10];    public static void main(String[] args){        Scanner in = new Scanner(System.in);        for(int i=0;i0){                if(x==-1) x=i;                else if(y==-1) y=i;                num[i]--;            }        }        if(x==y){            System.out.println("Elephant");        }        else{            System.out.println("Bear");        }    }}
    Nach dem Login kopieren




    B. MUH and Important Things

    time limit per test

    1 second

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    It's time polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got down to business. In total, there are n tasks for the day and each animal should do each of these tasks. For each task, they have evaluated its difficulty. Also animals decided to do the tasks in order of their difficulty. Unfortunately, some tasks can have the same difficulty, so the order in which one can perform the tasks may vary.

    Menshykov, Uslada and Horace ask you to deal with this nuisance and come up with individual plans for each of them. The plan is a sequence describing the order in which an animal should do all the n tasks. Besides, each of them wants to have its own unique plan. Therefore three plans must form three different sequences. You are to find the required plans, or otherwise deliver the sad news to them by stating that it is impossible to come up with three distinct plans for the given tasks.

    Input

    The first line contains integer n (1?≤?n?≤?2000) ? the number of tasks. The second line contains n integers h1,?h2,?...,?hn (1?≤?hi?≤?2000), where hi is the difficulty of the i-th task. The larger number hi is, the more difficult the i-th task is.

    Output

    In the first line print "YES" (without the quotes), if it is possible to come up with three distinct plans of doing the tasks. Otherwise print in the first line "NO" (without the quotes). If three desired plans do exist, print in the second line n distinct integers that represent the numbers of the tasks in the order they are done according to the first plan. In the third and fourth line print two remaining plans in the same form.

    If there are multiple possible answers, you can print any of them.

    Sample test(s)

    input

    41 3 3 1
    Nach dem Login kopieren

    output

    YES1 4 2 3 4 1 2 3 4 1 3 2 
    Nach dem Login kopieren

    input

    52 4 1 4 8
    Nach dem Login kopieren

    output

    NO
    Nach dem Login kopieren

    Note

    In the first sample the difficulty of the tasks sets one limit: tasks 1 and 4 must be done before tasks 2 and 3. That gives the total of four possible sequences of doing tasks : [1, 4, 2, 3], [4, 1, 2, 3], [1, 4, 3, 2], [4, 1, 3, 2]. You can print any three of them in the answer.

    In the second sample there are only two sequences of tasks that meet the conditions ? [3, 1, 2, 4, 5] and [3, 1, 4, 2, 5]. Consequently, it is impossible to make three distinct sequences of tasks.

    简单题....

    /** * Created by ckboss on 14-9-27. */import java.util.*;public class CF471B {    static class Dui{        int num,id;    }    static class mycmp implements Comparator<dui>{        public int compare(Dui a,Dui b){            return a.num-b.num;        }    }    static int n;    static int[] h = new int[2200];    static int[] used = new int[2200];    static Dui[] dui = new Dui[2200];    public static void main(String[] args){        Scanner in = new Scanner(System.in);        n=in.nextInt();        int mx=-1;        for(int i=1;i=3){            System.out.println("YES");            int sg=-1;            for(int i=1;i=3){                    sg=h[i];                    break;                }            }            int a=-1,b=-1,c=-1,nt=0;            for(int i=1;i       <br>       <br>       <p></p>                      <p class="sycode">   </p>
    <p class="sycode">    </p>
    <p class="sycode">     </p>
    <p class="sycode">      </p>
    <p class="sycode">       </p>
    <p class="sycode">        C. MUH and House of Cards       </p>       <p class="sycode">        </p>
    <p class="sycode">         time limit per test        </p> 1 second              <p class="sycode">        </p>
    <p class="sycode">         memory limit per test        </p> 256 megabytes              <p class="sycode">        </p>
    <p class="sycode">         input        </p> standard input              <p class="sycode">        </p>
    <p class="sycode">         output        </p> standard output                   <p class="sycode">       </p>
    <p> Polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev decided to build a house of cards. For that they've already found a hefty deck of n playing cards. Let's describe the house they want to make:</p>       <ol>        <li> The house consists of some non-zero number of floors.</li>        <li> Each floor consists of a non-zero number of rooms and the ceiling. A room is two cards that are leaned towards each other. The rooms are made in a row, each two adjoining rooms share a ceiling made by another card.</li>        <li> Each floor besides for the lowest one should contain less rooms than the floor below.</li>       </ol>       <p> Please note that the house may end by the floor with more than one room, and in this case they also must be covered by the ceiling. Also, the number of rooms on the adjoining floors doesn't have to differ by one, the difference may be more.</p>       <p> While bears are practicing to put cards, Horace tries to figure out how many floors their house should consist of. The height of the house is the number of floors in it. It is possible that you can make a lot of different houses of different heights out of n cards. It seems that the elephant cannot solve this problem and he asks you to count the number of the distinct heights of the houses that they can make using exactly n cards.</p>            <p class="sycode">       </p>
    <p class="sycode">        Input       </p>       <p> The single line contains integer n (1?≤?n?≤?1012) ? the number of cards.</p>            <p class="sycode">       </p>
    <p class="sycode">        Output       </p>       <p> Print the number of distinct heights that the houses made of exactly n cards can have.</p>            <p class="sycode">       </p>
    <p class="sycode">        Sample test(s)       </p>       <p class="sycode">        </p>
    <p class="sycode">         </p>
    <p class="sycode">          input         </p>         <pre style="代码" class="precsshei">13
    Nach dem Login kopieren

    output

    input

    output

    Note

    In the first sample you can build only these two houses (remember, you must use all the cards):

    Thus, 13 cards are enough only for two floor houses, so the answer is 1.

    The six cards in the second sample are not enough to build any house.

    到10^12总共只要80W种可能的层数,鉴于CF的强大机器直接暴力....

    /** * Created by ckboss on 14-9-27. */import java.util.*;public class CF471C {    static long getA(long x){        return 2*(x+1)+3*(x+1)*x/2;    }    public static void main(String[] args){        Scanner in = new Scanner(System.in);        long n = in.nextLong();        int ans=0;        for(long i=0;;i++){            long t=getA(i);            if(t       <br>       <br>       <p></p>                      <p class="sycode">   </p><p class="sycode">    </p><p class="sycode">     </p><p class="sycode">      </p><p class="sycode">       </p><p class="sycode">        D. MUH and Cube Walls       </p>       <p class="sycode">        </p><p class="sycode">         time limit per test        </p> 2 seconds              <p class="sycode">        </p><p class="sycode">         memory limit per test        </p> 256 megabytes              <p class="sycode">        </p><p class="sycode">         input        </p> standard input              <p class="sycode">        </p><p class="sycode">         output        </p> standard output                   <p class="sycode">       </p><p> Polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got hold of lots of wooden cubes somewhere. They started making cube towers by placing the cubes one on top of the other. They defined multiple towers standing in a line as a wall. A wall can consist of towers of different heights.</p>       <p> Horace was the first to finish making his wall. He called his wall an elephant. The wall consists of w towers. The bears also finished making their wall but they didn't give it a name. Their wall consists of n towers. Horace looked at the bears' tower and wondered: in how many parts of the wall can he "see an elephant"? He can "see an elephant" on a segment of w contiguous towers if the heights of the towers on the segment match as a sequence the heights of the towers in Horace's wall. In order to see as many elephants as possible, Horace can raise and lower his wall. He even can lower the wall below the ground level (see the pictures to the samples for clarification).</p>       <p> Your task is to count the number of segments where Horace can "see an elephant".</p>            <p class="sycode">       </p><p class="sycode">        Input       </p>       <p> The first line contains two integers n and w (1?≤?n,?w?≤?2·105) ? the number of towers in the bears' and the elephant's walls correspondingly. The second line contains n integers ai (1?≤?ai?≤?109) ? the heights of the towers in the bears' wall. The third line contains w integers bi (1?≤?bi?≤?109) ? the heights of the towers in the elephant's wall.</p>            <p class="sycode">       </p><p class="sycode">        Output       </p>       <p> Print the number of segments in the bears' wall where Horace can "see an elephant".</p>            <p class="sycode">       </p><p class="sycode">        Sample test(s)       </p>       <p class="sycode">        </p><p class="sycode">         </p><p class="sycode">          input         </p>         <pre style="代码" class="precsshei">13 52 4 5 5 4 3 2 2 2 3 3 2 13 4 4 3 2
    Nach dem Login kopieren

    output

    Note

    The picture to the left shows Horace's wall from the sample, the picture to the right shows the bears' wall. The segments where Horace can "see an elephant" are in gray.


    预处理出差值跑KMP.....

    才发现我的KMP模版有一个小bug.....还用了这么多年......

    /** * Created by ckboss on 14-9-27. */import java.util.*;import java.io.*;public class CF471D {    static int n,m;    static int[] hi = new int[200200];    static int[] wi = new int[200200];    static int[] h = new int[200200];    static int[] w = new int[200200];    static int[] f = new int[200200];    static void getfail(){        f[0]=f[1]=0;        for(int i=1;i<m int j="f[i];" while f static kmp ans="0;" getfail for i="0;i<n;i++){" if return public void main args scanner in="new" n="in.nextInt();" m="in.nextInt();" hi>=0) h[i-1]=hi[i]-hi[i-1];        }        for(int i=0;i<m wi in.nextint if>=0) w[i-1]=wi[i]-wi[i-1];        }        m--;n--;        if(m==0){            System.out.println(n+1);            return ;        }        System.out.println(kmp());    }}</m></m>
    Nach dem Login kopieren





    Erklärung dieser Website
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

    Heiße KI -Werkzeuge

    Undresser.AI Undress

    Undresser.AI Undress

    KI-gestützte App zum Erstellen realistischer Aktfotos

    AI Clothes Remover

    AI Clothes Remover

    Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

    Undress AI Tool

    Undress AI Tool

    Ausziehbilder kostenlos

    Clothoff.io

    Clothoff.io

    KI-Kleiderentferner

    AI Hentai Generator

    AI Hentai Generator

    Erstellen Sie kostenlos Ai Hentai.

    Heißer Artikel

    R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
    2 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
    Repo: Wie man Teamkollegen wiederbelebt
    4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Abenteuer: Wie man riesige Samen bekommt
    3 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌

    Heiße Werkzeuge

    Notepad++7.3.1

    Notepad++7.3.1

    Einfach zu bedienender und kostenloser Code-Editor

    SublimeText3 chinesische Version

    SublimeText3 chinesische Version

    Chinesische Version, sehr einfach zu bedienen

    Senden Sie Studio 13.0.1

    Senden Sie Studio 13.0.1

    Leistungsstarke integrierte PHP-Entwicklungsumgebung

    Dreamweaver CS6

    Dreamweaver CS6

    Visuelle Webentwicklungstools

    SublimeText3 Mac-Version

    SublimeText3 Mac-Version

    Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

    Schwierigkeiten bei der Aktualisierung der Zwischenspeicherung offizieller Konto -Webseiten: Wie vermeiden Sie den alten Cache, der sich auf die Benutzererfahrung nach der Versionsaktualisierung auswirkt? Schwierigkeiten bei der Aktualisierung der Zwischenspeicherung offizieller Konto -Webseiten: Wie vermeiden Sie den alten Cache, der sich auf die Benutzererfahrung nach der Versionsaktualisierung auswirkt? Mar 04, 2025 pm 12:32 PM

    Das offizielle Konto -Webseite aktualisiert Cache, dieses Ding ist einfach und einfach und es ist kompliziert genug, um einen Topf davon zu trinken. Sie haben hart gearbeitet, um den offiziellen Account -Artikel zu aktualisieren, aber der Benutzer hat die alte Version immer noch geöffnet. Schauen wir uns in diesem Artikel die Wendungen und Wendungen und wie man dieses Problem anmutig ansehen. Nach dem Lesen können Sie sich leicht mit verschiedenen Caching -Problemen befassen, sodass Ihre Benutzer immer den frischesten Inhalt erleben können. Sprechen wir zuerst über die Grundlagen. Um es unverblümt auszudrücken, speichert der Browser oder Server einige statische Ressourcen (wie Bilder, CSS, JS) oder Seiteninhalte, um die Zugriffsgeschwindigkeit zu verbessern. Wenn Sie das nächste Mal darauf zugreifen, können Sie ihn direkt aus dem Cache abrufen, ohne ihn erneut herunterzuladen, und es ist natürlich schnell. Aber dieses Ding ist auch ein zweischneidiges Schwert. Die neue Version ist online,

    Wie verwende ich HTML5 -Formularvalidierungsattribute, um die Benutzereingabe zu validieren? Wie verwende ich HTML5 -Formularvalidierungsattribute, um die Benutzereingabe zu validieren? Mar 17, 2025 pm 12:27 PM

    In dem Artikel werden unter Verwendung von HTML5 -Formularvalidierungsattributen wie Erforderlich, Muster, Min, MAX und Längengrenzen erörtert, um die Benutzereingabe direkt im Browser zu validieren.

    Wie füge ich PNG -Bildern auf Webseiten effizient Schlaganfalleffekte hinzu? Wie füge ich PNG -Bildern auf Webseiten effizient Schlaganfalleffekte hinzu? Mar 04, 2025 pm 02:39 PM

    Dieser Artikel zeigt einen effizienten PNG -Grenzzusatz zu Webseiten mithilfe von CSS. Es wird argumentiert, dass CSS im Vergleich zu JavaScript oder Bibliotheken eine überlegene Leistung bietet, um zu beschreiben, wie die Randbreite, Stil und Farbe für subtile oder herausragende Effekte angepasst werden können

    Was sind die besten Praktiken für die Kompatibilität des Cross-Browsers in HTML5? Was sind die besten Praktiken für die Kompatibilität des Cross-Browsers in HTML5? Mar 17, 2025 pm 12:20 PM

    In Artikel werden Best Practices zur Gewährleistung der HTML5-Cross-Browser-Kompatibilität erörtert und sich auf die Erkennung von Merkmalen, die progressive Verbesserung und die Testmethoden konzentriert.

    Was ist der Zweck des & lt; datalist & gt; Element? Was ist der Zweck des & lt; datalist & gt; Element? Mar 21, 2025 pm 12:33 PM

    Der Artikel erörtert den HTML & lt; Datalist & gt; Element, das die Formulare verbessert, indem automatische Vorschläge bereitgestellt, die Benutzererfahrung verbessert und Fehler reduziert werden.Character Count: 159

    Was ist der Zweck des & lt; Fortschritts & gt; Element? Was ist der Zweck des & lt; Fortschritts & gt; Element? Mar 21, 2025 pm 12:34 PM

    Der Artikel erörtert den HTML & lt; Progress & gt; Element, Absicht, Styling und Unterschiede vom & lt; Meter & gt; Element. Das Hauptaugenmerk liegt auf der Verwendung & lt; Fortschritt & gt; Für Aufgabenabschluss und & lt; Meter & gt; für stati

    Wie benutze ich die HTML5 & lt; Zeit & gt; Element, um Daten und Zeiten semantisch darzustellen? Wie benutze ich die HTML5 & lt; Zeit & gt; Element, um Daten und Zeiten semantisch darzustellen? Mar 12, 2025 pm 04:05 PM

    Dieser Artikel erklärt den HTML5 & lt; Time & gt; Element für semantische Datum/Uhrzeit. Es betont die Wichtigkeit des DateTime-Attributs für die Maschinenlesbarkeit (ISO 8601-Format) neben menschenlesbarem Text, das Zubehör steigert

    Was ist der Zweck des & lt; Meter & gt; Element? Was ist der Zweck des & lt; Meter & gt; Element? Mar 21, 2025 pm 12:35 PM

    Der Artikel erörtert das HTML & lt; Meter & gt; Element, verwendet zur Anzeige von Skalar- oder Bruchwerten innerhalb eines Bereichs und seine gemeinsamen Anwendungen in der Webentwicklung. Es differenziert & lt; Meter & gt; von & lt; Fortschritt & gt; und Ex

    See all articles