Kakegawa-juku

Kakegawa-juku (掛川宿, Kakegawa-juku) was the twenty-sixth of the fifty-three stations of the Tōkaidō. It is located in what is now the city of Kakegawa, Shizuoka Prefecture, Japan.

Kakegawa-juku in the 1830s, as depicted by Hiroshige in The Fifty-three Stations of the Tōkaidō

History

Kakegawa-juku was originally the castle town of Kakegawa Castle. It was famous because Yamauchi Kazutoyo rebuilt the area and lived there himself.

It also served as a post station along a salt road that ran through Shinano Province between the modern-day cities of Makinohara and Hamamatsu.

The classic ukiyo-e print by Andō Hiroshige (Hōeidō edition) from 1831–1834 depicts travelers crossing a trestle-bridge. An old couple is struggling against a strong wind, followed by a boy making a mocking gesture; another boy is watching a kite up in the air. In the background, peasants are planting rice and in the distance, Mount Akiba is shown in the mists.

Neighboring post towns

Tōkaidō
Nissaka-shuku - Kakegawa-juku - Fukuroi-juku

Further reading

  • Carey, Patrick. Rediscovering the Old Tokaido:In the Footsteps of Hiroshige. Global Books UK (2000). ISBN 1-901903-10-9
  • Chiba, Reiko. Hiroshige's Tokaido in Prints and Poetry. Tuttle. (1982) ISBN 0-8048-0246-7
  • Taganau, Jilly. The Tokaido Road: Travelling and Representation in Edo and Meiji Japan. RoutledgeCurzon (2004). ISBN 0-415-31091-1
gollark: I believe this is O(n!), actually.
gollark: The performance is great too. It's not O(n²), it's an even more biggerer and thus superior order.
gollark: Of course.
gollark: I'm not entirely sure how, but it seems to construct a tree/maybe deterministic finite automaton/finite state machine/I don't know theoretical CS which matches anagrams and unmatches unanagrams.
gollark: ```pythonimport collectionsdef do_thing(s): if len(s) == 1: return { s[0]: True } out = {} for i, c in enumerate(s): without = s[:i] + s[i + 1:] things = do_thing(without) out[c] = things return outdef match(r, s): print(r) c = r for i, x in enumerate(s): print(x) try: c = c[x] if c == True: if i + 1 == len(s): return True # full match else: return False # characters remain except KeyError: return False # no match return False # incomplete matchentry = lambda a, b: match(do_thing(a.lower().replace(" ", "")), b.lower().replace(" ", ""))```Here is my entry (pending a port to osmarkslisp™️). This is definitely my entry.

References

Media related to Kakegawa-juku at Wikimedia Commons

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.