Löse die Inselsuche (entspricht Paiza Rang S) mit Python

zunaechst

Ich habe Paizas Level-Up-Problem-Sammlung gelöst, aber ich hatte keine vorbildliche Antwort, also habe ich es selbst gemacht. Die Sprache ist Python3.

Problem

Paizas Skill-Check-Beispielproblem "Inselsuche (entspricht Paiza-Rang S)" https://paiza.jp/works/mondai/skillcheck_sample/search-island?language_uid=python3 Ich konnte die Problemstellung nicht sehen, ohne mich anzumelden. Die Registrierung ist kostenlos und kann sofort erfolgen. Ich empfehle Ihnen daher, sich vorerst zu registrieren.

Antwortcode

find_lands.py


col, row = map(int, input().split())
map_list = [[0]* (col+2)]
for _ in range(row):
    map_list.append([0] + list(map(int, input().split())) + [0])
map_list.append(map_list[0])

def check(x, y):
    lands = [[x,y]]
    
    while lands:
        x, y = lands.pop()
        map_list[y][x] = 0
        # down 
        if map_list[y+1][x] == 1:
            lands.append([x, y+1])
        # right
        if map_list[y][x+1] == 1:
            lands.append([x+1, y])
        # up
        if map_list[y-1][x] == 1:
            lands.append([x, y-1])
        # left
        if map_list[y][x-1] == 1:
            lands.append([x-1, y])

count = 0
for r in range(1, row+1):
    for c in range(1, col+1):
        if map_list[r][c] == 1:
            check(c, r)
            count += 1

print(count)

Referenz

https://maro28.com/paiza-s-rank-mod7

Zusammenfassung

Ich habe am Anfang einen Artikel über Qiita geschrieben, aber er sollte einfach und benutzerfreundlich sein! Ich hoffe ich kann es von jetzt an benutzen.

Recommended Posts

Löse die Inselsuche (entspricht Paiza Rang S) mit Python
Löse mod7 Wahrsagerei (entspricht Paiza Rang S) in Python
Löse Addition (entspricht Paiza Rang D) in Python
Löse die Multiplikation (entspricht Paiza Rang D) in Python
Lösen der Nummernsortierung (entspricht Paiza Rang D) in Python
Lösen Sie die Wortanzahl (entspricht Paiza Rang C) in Python
Löse Charakter-Übereinstimmungen (entspricht Paiza-Rang D) in Python
Löse Fizz Buzz (entspricht Paiza Rang C) in Python
Löse den kleinsten Wert in Python (entspricht Paiza Rang D)
[Mit Kommentar] Löse Fizz Buzz (entspricht Paiza Rang C) mit Python
PUT gzip direkt in S3 in Python
Ich wollte ABC159 mit Python lösen
Löse ABC168D in Python
Löse ABC167-D mit Python
Löse ABC146-C mit Python
Löse ABC098-C in Python
Löse ABC159-D in Python
Löse ABC169 mit Python
Löse ABC160-E mit Python
Um das Äquivalent von Rubys ObjectSpace._id2ref in Python zu tun
So löschen Sie stdout in Python
Melden Sie sich auf der Website in Python an
Python3-Verarbeitung, die in Paiza verwendbar zu sein scheint
Löse ABC176 E in Python
Löse Wooldridge-Übungen in Python
Löse ABC175 D in Python
Sprechen mit Python [Text zu Sprache]
13. Offline-Echtzeit So lösen Sie Schreibprobleme mit Python
Lösen Sie Optimierungsprobleme mit Python
Wie man in Python entwickelt
Post an Slack in Python
Ich möchte APG4b mit Python lösen (nur 4.01 und 4.04 in Kapitel 4)
17. Offline-Echtzeit So lösen Sie Schreibprobleme mit Python
So schreiben Sie offline in Echtzeit Lösen von E04-Problemen mit Python
[Python] Wie man PCA mit Python macht
Konvertieren Sie Markdown in Python in PDF
So sammeln Sie Bilder in Python
Verwendung von SQLite in Python
Löse den Atcoder ABC169 A-D mit Python
Im Python-Befehl zeigt Python auf Python3.8
Versuchen Sie, Trace in Python zu berechnen
Löse ABC036 A ~ C mit Python
Wie man MySQL mit Python benutzt
So verpacken Sie C in Python
Verwendung von ChemSpider in Python
6 Möglichkeiten zum Stringen von Objekten in Python
Verwendung von PubChem mit Python
Löse ABC037 A ~ C mit Python
Lösen Sie normale Differentialgleichungen in Python
Umgang mit Japanisch mit Python
Eine Alternative zu "Pause" in Python
Ich habe versucht, AtCoders Depth Priority Search (DFS) in Python zu lösen (Ergebnis: TLE ...)
Laden Sie das, was Sie angefordert haben, mit AWS Lambda Python in S3 hoch
[Bei Coder] Was ich getan habe, um den grünen Rang in Python zu erreichen
Ich habe versucht, PLSA in Python zu implementieren
Löse ABC175 A, B, C mit Python
Versuchen Sie, sich mit Python bei qiita anzumelden
Ich habe versucht, Permutation in Python zu implementieren
Methode zum Erstellen einer Python-Umgebung in Xcode 6
Dynamisches Definieren von Variablen in Python