Recall:
Then,
$$$$
| /* | |
| * Custom CSS for Feign running with OBS/Discord Streaming Kit. | |
| * | |
| * Recommended browser size: w2600 x h400 | |
| * | |
| * URL: https://streamkit.discord.com/overlay/voice/{SERVER_ID}/{CHANNEL_ID}?icon=true&online=true&logo=white&text_color=%23ffffff&text_size=28&text_outline_color=%23000000&text_outline_size=0&text_shadow_color=%23000000&text_shadow_size=0&bg_color=%231e2124&bg_opacity=0.95&bg_shadow_color=%23000000&bg_shadow_size=0&invite_code=&limit_speaking=false&small_avatars=false&hide_names=true&fade_chat=0&streamer_avatar_first=false | |
| * (Replace {SERVER_ID} and {CHANNEL_ID} with your IDs.) | |
| * | |
| * Modified based on: | |
| * - https://piyonyuxu.fanbox.cc/posts/4943228 |
| /* | |
| * Custom horizontal layout CSS running with OBS/Discord Streaming Kit. | |
| * | |
| * Recommended browser size: w2600 x h400 | |
| * URL: https://streamkit.discord.com/overlay/voice/{SERVER_ID}/{CHANNEL_ID}?icon=true&online=true&logo=white&text_color=%23ffffff&text_size=28&text_outline_color=%23000000&text_outline_size=0&text_shadow_color=%23000000&text_shadow_size=0&bg_color=%231e2124&bg_opacity=0.95&bg_shadow_color=%23000000&bg_shadow_size=0&invite_code=&limit_speaking=false&small_avatars=false&hide_names=false&fade_chat=0&streamer_avatar_first=false | |
| * (Replace {SERVER_ID} and {CHANNEL_ID} with your IDs.) | |
| */ | |
| [class*="Voice_voiceStates__"] { | |
| display: flex; |
REPO with the path to your local clone of the GitHub repository.REPO contains the problems directory.docker pull problemtools/icpc| #!/usr/bin/env python | |
| import sys | |
| import fileinput | |
| import re | |
| diff = -8 | |
| def repl(matched): | |
| h = int(matched.group(1)) + diff |
| static inline int encode_distance(int start, int distance) { return ((start + 1) << 4) + distance; } | |
| static inline int decode_distance(int x) { return x & ((1 << 4) - 1); } | |
| static inline int node_visited(int x, int v) { return (x >> 4) == v + 1; } | |
| template <typename Graph> | |
| static void extend_closed_neighborhood(Graph const& G, Graph& H, int v, int radius, int buffer[]) { | |
| assert(0 <= v && v < G.number_of_nodes()); | |
| assert(radius >= 0); |
| #!/bin/bash | |
| TIMEOUT=timeout | |
| run_with_timeout() { | |
| oldopt=$- | |
| set +e | |
| $TIMEOUT $@ | |
| ret=$? | |
| if [[ $ret -eq 124 ]]; then |