id
stringlengths
14
117
description
stringlengths
29
13k
code
stringlengths
10
49.8k
test_samples
dict
source
class label
3 classes
prompt
stringlengths
391
104k
p03289 AtCoder Beginner Contest 104 - AcCepted_10387
You are given a string S. Each character of S is uppercase or lowercase English letter. Determine if S satisfies all of the following conditions: * The initial character of S is an uppercase `A`. * There is exactly one occurrence of `C` between the third character from the beginning and the second to last character (i...
S = input() if S[0]=='A' and S[2:-1].count('C')==1 and (S[1:S.find('C')]+S[S.find('C')+1:]).islower(): print('AC') else: print('WA')
{ "input": [ "AtCoCo", "Atcoder", "ACoder", "AcycliC", "AtCoder", "AtBoCo", "AtCoddr", "redoctA", "ACodes", "BcycliC", "etCodAr", "AtBnCo", "redpctA", "ACodds", "CilcycB", "@tBnCo", "retpcdA", "sddoCA", "BcyclhC", "AtCodds", "oCnBt@",...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a string S. Each character of S is uppercase or lowercase English letter. Determine if S satisfies all of the following conditions: * The initial character of S is an u...
p03445 AtCoder Petrozavodsk Contest 001 - Simple APSP Problem_10390
You are given an H \times W grid. The square at the top-left corner will be represented by (0, 0), and the square at the bottom-right corner will be represented by (H-1, W-1). Of those squares, N squares (x_1, y_1), (x_2, y_2), ..., (x_N, y_N) are painted black, and the other squares are painted white. Let the shorte...
from collections import deque, Counter import sys sys.setrecursionlimit(10 ** 7) input = sys.stdin.readline mod = 10**9 + 7 h, w = map(int, input().split()) n = int(input()) ans = 0 black = [] row = Counter() column = Counter() for _ in range(n): x, y = map(int, input().split()) row[x] += 1 column[y] += ...
{ "input": [ "2 3\n1\n1 2", "3 3\n1\n1 1", "1000000 1000000\n1\n0 0", "4 4\n4\n0 1\n1 1\n2 1\n2 2", "2 3\n1\n1 1", "2 3\n1\n0 1", "2 3\n1\n0 2", "1000000 1000000\n0\n0 0", "2 4\n1\n0 1", "2 4\n0\n0 1", "1000001 1000000\n0\n0 1", "4 4\n0\n0 1", "6 4\n0\n0 1", "11...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given an H \times W grid. The square at the top-left corner will be represented by (0, 0), and the square at the bottom-right corner will be represented by (H-1, W-1). Of tho...
p03605 AtCoder Beginner Contest 073 - September 9_10394
It is September 9 in Japan now. You are given a two-digit integer N. Answer the question: Is 9 contained in the decimal notation of N? Constraints * 10≤N≤99 Input Input is given from Standard Input in the following format: N Output If 9 is contained in the decimal notation of N, print `Yes`; if not, print `No...
n = input() ans = 'Yes' if '9' in n else 'No' print(ans)
{ "input": [ "29", "91", "72", "1", "69", "115", "84", "0", "181", "168", "174", "304", "143", "465", "929", "109", "820", "147", "112", "19", "215", "34", "161", "8", "189", "15", "361", "17", "485", ...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: It is September 9 in Japan now. You are given a two-digit integer N. Answer the question: Is 9 contained in the decimal notation of N? Constraints * 10≤N≤99 Input Input is given ...
p03766 AtCoder Regular Contest 071 - Infinite Sequence_10398
How many infinite sequences a_1, a_2, ... consisting of {{1, ... ,n}} satisfy the following conditions? * The n-th and subsequent elements are all equal. That is, if n \leq i,j, a_i = a_j. * For every integer i, the a_i elements immediately following the i-th element are all equal. That is, if i < j < k\leq i+a_i, a_j...
n = int(input()) dp = [0] * (n+1) mod = 10**9+7 dp[0] = n dp[1] = n*n SUM = n+n*n for i in range(2,n): dp[i] = (n-1)*(n-1) + n-i+1+SUM-dp[i-2] dp[i] %= mod SUM += dp[i] SUM %= mod print(dp[n-1])
{ "input": [ "654321", "2", "53707", "3", "42179", "1", "69890", "4", "68941", "126548", "138065", "132361", "219101", "412635", "147547", "226036", "401978", "462799", "563821", "507124", "417069", "235764", "221196", "33...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: How many infinite sequences a_1, a_2, ... consisting of {{1, ... ,n}} satisfy the following conditions? * The n-th and subsequent elements are all equal. That is, if n \leq i,j, a_i ...
p00027 What day is today?_10404
Your task is to write a program which reads a date (from 2004/1/1 to 2004/12/31) and prints the day of the date. Jan. 1, 2004, is Thursday. Note that 2004 is a leap year and we have Feb. 29. Input The input is a sequence of datasets. The end of the input is indicated by a line containing one zero. Each dataset cons...
days = [31,29,31,30,31,30,31,31,30,31,30,31] ans = ["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"] while True: idx = 3 m,d = map(int, input().split()) if m==0: break print(ans[(idx+sum(days[:m-1])+d-1)%7])
{ "input": [ "1 1\n2 29\n0 0", "1 1\n2 26\n0 0", "2 1\n2 26\n0 0", "1 1\n3 26\n0 0", "2 1\n2 17\n0 0", "2 1\n2 18\n0 0", "2 1\n1 19\n0 0", "2 2\n2 17\n0 0", "2 2\n3 17\n0 0", "2 1\n1 17\n0 0", "2 1\n1 18\n0 0", "4 2\n3 17\n0 0", "2 2\n1 17\n0 0", "4 2\n6 17\n0 0...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Your task is to write a program which reads a date (from 2004/1/1 to 2004/12/31) and prints the day of the date. Jan. 1, 2004, is Thursday. Note that 2004 is a leap year and we have F...
p00158 Collatz's Problem_10408
For a positive integer n * If n is even, divide by 2. * If n is odd, multiply by 3 and add 1. If you repeat the above operation, the result will be 1. A problem called "Colatz conjecture" is that repeating this operation for any positive integer n will always result in 1. This problem is an unsolved problem, also k...
while 1: n = int(input()) if n == 0: break cnt = 0 while n != 1: if n % 2 == 0: n //= 2 else: n = n * 3 + 1 cnt += 1 print(cnt)
{ "input": [ "3\n10\n0", "3\n15\n0", "3\n3\n0", "3\n11\n0", "3\n2\n0", "3\n9\n0", "3\n6\n0", "3\n1\n0", "3\n0\n0", "3\n18\n0", "3\n16\n0", "3\n4\n0", "3\n5\n0", "3\n17\n0", "3\n30\n0", "3\n22\n0", "3\n41\n0", "3\n59\n0", "3\n24\n0", "3\n7...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: For a positive integer n * If n is even, divide by 2. * If n is odd, multiply by 3 and add 1. If you repeat the above operation, the result will be 1. A problem called "Colatz con...
p00315 Quality Management_10411
The cloth coasters produced and sold by Aizu Takada City are known for their symmetrical design and great beauty. As part of quality control, Aizu Takada City has installed cameras on the production line to automatically verify that the images obtained by shooting each coaster are symmetrical. Each coaster is represent...
def next(N, i): return ((N-i-1)+N)%N def getState(N, G, i, j): return G[i][j] == G[i][next(N, j)] and G[i][j] == G[next(N, i)][j] and G[i][j] == G[next(N, i)][next(N, j)] def getInit(N, G): dcnt = 0 for i in range(N//2): for j in range(N//2): if not getState(N, G, i, j): dcnt += ...
{ "input": [ "1 6\n000000\n000000\n010010\n010010\n000000\n000000", "7 8\n00100000\n00011000\n10111101\n01100110\n01000110\n10111101\n00011000\n00100100\n2\n5 3\n1 6\n1\n6 8\n3\n6 8\n3 3\n3 6\n2\n6 3\n6 6\n0\n2\n3 8\n6 8", "2 2\n00\n00\n4\n1 1\n1 2\n2 1\n2 2", "1 6\n000000\n000000\n010010\n011010\n000...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The cloth coasters produced and sold by Aizu Takada City are known for their symmetrical design and great beauty. As part of quality control, Aizu Takada City has installed cameras on...
p00485 Shopping in JOI Kingdom_10415
There are N towns in JOI, which are connected by M bidirectional roads. There are shopping malls in K towns, and the people go to one of those towns through the road to shop. Depending on the location of your home, you may have to travel long distances to go shopping, which is very inconvenient. To understand this sit...
from heapq import heappop as pop from heapq import heappush as push INF = 10 ** 18 class edge: def __init__(self, to, cost): self.to = to self.cost = cost #V, E, r = map(int,input().split()) N, M, K = map(int,input().split()) G = [[] for i in range(N)] #G[i]...頂点iからの辺list、(行き先、コスト) d = [INF for i in rang...
{ "input": [ "3 3 1\n1 2 1\n2 3 1\n3 1 1\n1", "4 3 1\n1 2 1\n2 3 1\n3 1 1\n1", "4 3 1\n1 2 1\n2 3 2\n1 1 1\n1", "4 3 1\n1 2 1\n2 3 1\n1 2 1\n2", "4 3 1\n1 2 1\n2 3 4\n1 1 1\n1", "8 3 1\n1 1 2\n2 3 4\n3 1 0\n1", "4 3 1\n1 2 2\n2 4 4\n1 1 1\n1", "4 3 1\n1 1 0\n1 3 0\n3 2 0\n1", "10 3...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are N towns in JOI, which are connected by M bidirectional roads. There are shopping malls in K towns, and the people go to one of those towns through the road to shop. Dependi...
p00671 Live Schedule_10418
YOKARI TAMURA is a nationally famous artist. This month YOKARI will be touring live for D days. Divide this country into C different regions when deciding on a tour schedule. YOKARI benefits from performing live in an area, which is represented by a positive integer. As a general rule, YOKARI will perform up to one liv...
from itertools import accumulate def main(): while True: c, d, w, x = map(int, input().split()) if c == 0: break es = [[] for _ in range(d)] for _ in range(c): lst = list(map(int, input().split())) for i in range(d): es[i].append(lst[i]) fs = [[] for _ in range(d)] ...
{ "input": [ "5 5 10 2\n1 1 0 1 1\n0 9 1 0 1\n1 1 1 9 1\n1 1 9 0 1\n1 1 1 1 0\n1 1 0 1 1\n0 9 1 0 1\n1 1 1 9 1\n1 1 1 0 1\n1 1 1 1 0\n1 1 10 0\n3\n7\n1 1 5 0\n3\n6\n1 2 10 1\n6 7\n5 6\n2 1 10 1\n4\n8\n3\n7\n2 1 10 0\n4\n8\n3\n7\n2 1 5 0\n4\n8\n3\n6\n0 0 0 0", "5 5 10 2\n1 1 0 1 0\n0 9 1 0 1\n1 1 1 9 1\n1 1 9 ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: YOKARI TAMURA is a nationally famous artist. This month YOKARI will be touring live for D days. Divide this country into C different regions when deciding on a tour schedule. YOKARI b...
p00814 Life Line_10422
Let's play a new board game ``Life Line''. The number of the players is greater than 1 and less than 10. In this game, the board is a regular triangle in which many small regular triangles are arranged (See Figure l). The edges of each small triangle are of the same length. <image> Figure 1: The board The size of ...
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools sys.setrecursionlimit(10**7) inf = 10**20 eps = 1.0 / 10**13 mod = 10**9+7 dd = [(-1,0),(0,1),(1,0),(0,-1)] ddn = [(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int(x) for x in sys.stdin....
{ "input": [ "4 4\n 2\n 2 3\n 1 0 4\n1 1 4 0\n4 5\n 2\n 2 3\n 3 0 4\n1 1 4 0\n4 1\n 2\n 2 3\n 3 0 4\n1 1 4 0\n4 1\n 1\n 1 1\n 1 1 1\n1 1 1 0\n4 2\n 1\n 1 1\n 1 1 1\n1 1 1 0\n4 1\n 0\n 2 2\n 5 0 7\n0 5 7 0\n4 2\n 0\n 0 3\n 1 0 4\n0 1 0 4\n4 3\n 0\n 3 3\n 3 2 3\n0 3 0 3\n4 2\n 0\n 3 3\n 3...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Let's play a new board game ``Life Line''. The number of the players is greater than 1 and less than 10. In this game, the board is a regular triangle in which many small regular tr...
p01078 Star_10426
Problem Find the area of ​​a regular N / K polygon inscribed in a circle with a radius of 1. However, a regular N / K polygon is defined as "the outermost figure that takes N points on the circumference at equal intervals and connects each point every K-1". For example, a 5/2 polygon can be drawn as follows. First, ...
# AOJ 1593: Star # Python3 2018.7.13 bal4u import math PI = 3.1415926535897932384626433832795 # area = n*r^2*sin(180/n)*cos(180k/n)*sec(180(k-1)/n), for n/k star N, K = map(int, input().split()) print(N*math.sin(PI/N)*math.cos(K*PI/N)/math.cos((K-1)*PI/N))
{ "input": [ "100000 3", "20 3", "7 3", "5 2", "100000 2", "36 3", "36 2", "100010 4", "000010 4", "001010 4", "100100 3", "33 3", "101000 2", "36 4", "001010 2", "001000 4", "110000 3", "6 3", "101000 3", "36 8", "001011 4", "001...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Problem Find the area of ​​a regular N / K polygon inscribed in a circle with a radius of 1. However, a regular N / K polygon is defined as "the outermost figure that takes N points...
p01830 Delete Files_10434
Example Input 3 y 7 y 6 n 5 Output 1
import sys readline = sys.stdin.readline write = sys.stdout.write def solve(): N = int(readline()) L = [0]*N; D = [0]*N for i in range(N): l, d = readline().split() L[i] = +(l == 'y') D[i] = int(d) ans = 0 *I, = range(N) I.sort(key = D.__getitem__) U = [0]*N for i...
{ "input": [ "3\ny 7\ny 6\nn 5", "3\ny 7\ny 2\nn 5", "3\ny 7\ny 3\nn 5", "3\ny 7\ny 3\nn 10", "3\ny 2\ny 3\nn 10", "3\ny 2\ny 6\nn 10", "3\nx 2\ny 6\nn 10", "3\ny 7\ny 11\nn 5", "3\ny 8\ny 2\nn 5", "3\ny 7\ny 6\nn 2", "3\ny 0\ny 3\nn 10", "3\ny 4\ny 3\nn 10", "3\ny ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Example Input 3 y 7 y 6 n 5 Output 1 ### Input: 3 y 7 y 6 n 5 ### Output: 1 ### Input: 3 y 7 y 2 n 5 ### Output: 1 ### Code: import sys readline = sys.stdin.readline write = ...
p02112 Hating Crowd_10437
Problem Neat lives on the world line for a total of 360 days until the 30th of every month for 1 year and 12 months. In that world, N consecutive holidays with the same schedule were applied to people all over the world every year. Consecutive holidays i are consecutive Vi days starting from Mi month Di day. NEET is ...
N = input() N = int(N)+1 X = [0] C = [0]*360 for i in range(1,N): x = input() X.append(x.split()) i_start = (int(X[i][0])-1)*30+int(X[i][1])-1 i_end = i_start+int(X[i][2])-1 for j in range(i_start,i_end+1): C[j%360] = max(C[j%360],int(X[i][3])) for k in range(1,int(X[i][3])+1): ...
{ "input": [ "1\n1 1 359 1", "2\n2 4 25 306\n1 9 7 321", "8\n2 9 297 297\n8 6 359 211\n8 16 28 288\n7 9 113 143\n3 18 315 190\n10 18 277 300\n9 5 276 88\n3 5 322 40", "1\n1 1 1 1", "2\n2 4 25 104\n1 9 7 321", "2\n2 4 25 28\n1 9 13 321", "2\n2 4 4 51\n1 4 13 252", "2\n3 4 4 51\n2 4 13 3...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Problem Neat lives on the world line for a total of 360 days until the 30th of every month for 1 year and 12 months. In that world, N consecutive holidays with the same schedule were...
p02252 Fractional Knapsack Problem_10440
You have $N$ items that you want to put them into a knapsack of capacity $W$. Item $i$ ($1 \le i \le N$) has weight $w_i$ and value $v_i$ for the weight. When you put some items into the knapsack, the following conditions must be satisfied: * The total value of the items is as large as possible. * The total weight of...
N, W = map(int, input().split()) W_calc = W ans = 0 items = [] for _ in range(N): v, w = map(int, input().split()) density = v / w items.append([density, v, w]) items.sort(reverse=True) for density, v, w in items: if w < W_calc: W_calc -= w ans += v else: ans += W_calc *...
{ "input": [ "1 100\n100000 100000", "3 50\n60 10\n100 20\n120 30", "3 50\n60 13\n100 23\n120 33", "3 50\n60 10\n110 20\n120 30", "0 50\n60 10\n110 20\n120 30", "3 14\n60 10\n100 20\n120 30", "1 50\n60 13\n100 23\n120 33", "3 50\n59 10\n110 20\n120 30", "1 100\n100001 100000", ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You have $N$ items that you want to put them into a knapsack of capacity $W$. Item $i$ ($1 \le i \le N$) has weight $w_i$ and value $v_i$ for the weight. When you put some items into...
p02400 Circle_10444
Write a program which calculates the area and circumference of a circle for given radius r. Constraints * 0 < r < 10000 Input A real number r is given. Output Print the area and circumference of the circle in a line. Put a single space between them. The output should not contain an absolute error greater than 10-...
pi=3.141592653589 r=float(input()) print(f'{r*r*pi:7f} {2*r*pi}')
{ "input": [ "2", "3", "4", "0", "5", "1", "6", "-1", "10", "-2", "7", "-4", "11", "-3", "17", "-5", "13", "-10", "21", "-13", "34", "-22", "39", "-8", "74", "8", "76", "-7", "149", "-6", "12", ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Write a program which calculates the area and circumference of a circle for given radius r. Constraints * 0 < r < 10000 Input A real number r is given. Output Print the area and...
1003_B. Binary String Constructing_10454
You are given three integers a, b and x. Your task is to construct a binary string s of length n = a + b such that there are exactly a zeroes, exactly b ones and exactly x indices i (where 1 ≤ i < n) such that s_i ≠ s_{i + 1}. It is guaranteed that the answer always exists. For example, for the string "01010" there ar...
a,b,x=map(int,input().split()) x+=1 y=x//2 c=0 if x%2: if a>b: a-=1;c=1 else: b-=1;c=2 s=(a-y)*'0'+y*'01'+(b-y)*'1' if c:s=s+'0'if c==1 else '1'+s print(s)
{ "input": [ "5 3 6\n", "2 2 1\n", "3 3 3\n", "3 2 1\n", "2 1 2\n", "2 3 3\n", "10 40 1\n", "91 87 11\n", "7 99 14\n", "67 81 40\n", "30 34 44\n", "7 8 7\n", "55 56 110\n", "83 83 83\n", "100 1 2\n", "6 84 12\n", "50 47 18\n", "15 26 24\n", "...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given three integers a, b and x. Your task is to construct a binary string s of length n = a + b such that there are exactly a zeroes, exactly b ones and exactly x indices i (...
1027_C. Minimum Value Rectangle_10458
You have n sticks of the given lengths. Your task is to choose exactly four of them in such a way that they can form a rectangle. No sticks can be cut to pieces, each side of the rectangle must be formed by a single stick. No stick can be chosen multiple times. It is guaranteed that it is always possible to choose suc...
super_ans = [] for i in range(int(input())): n = input() if n == '4': super_ans.append(input()) continue elif n == '5': a = sorted(map(int, input().split())) if a[0] == a[1] and a[2] == a[3]: super_ans.append(' '.join([str(a[0]), str(a[0]), str(a[2]), str(a[2])])...
{ "input": [ "3\n4\n7 2 2 7\n8\n2 8 1 4 8 2 1 5\n5\n5 5 5 5 5\n", "3\n4\n7 2 2 7\n8\n2 8 1 4 8 2 1 5\n5\n5 5 5 5 5\n", "1\n4\n1 1 10000 10000\n", "10\n9\n10 11 11 2 10 2 18 10 18\n6\n14 14 14 14 6 6\n11\n9 7 9 20 7 7 9 9 20 7 12\n7\n15 16 15 15 15 16 15\n17\n7 18 7 15 15 2 18 7 20 19 19 19 20 2 7 19 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You have n sticks of the given lengths. Your task is to choose exactly four of them in such a way that they can form a rectangle. No sticks can be cut to pieces, each side of the rec...
1070_A. Find a Number_10463
You are given two positive integers d and s. Find minimal positive integer n which is divisible by d and has sum of digits equal to s. Input The first line contains two positive integers d and s (1 ≤ d ≤ 500, 1 ≤ s ≤ 5000) separated by space. Output Print the required number or -1 if it doesn't exist. Examples In...
import os import sys from io import BytesIO, IOBase _print = print BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = 'x' in file.mode or 'r' not in file.mode self.write = self.buffer.wr...
{ "input": [ "15 50\n", "61 2\n", "13 50\n", "2 5000\n", "3 5000\n", "182 6\n", "364 4\n", "1 5000\n", "72 72\n", "5 1\n", "500 5000\n", "75 16\n", "212 14\n", "277 5\n", "4 5\n", "321 24\n", "4 3\n", "500 1\n", "481 11\n", "76 2\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given two positive integers d and s. Find minimal positive integer n which is divisible by d and has sum of digits equal to s. Input The first line contains two positive int...
1091_E. New Year and the Acquaintance Estimation_10467
Bob is an active user of the social network Faithbug. On this network, people are able to engage in a mutual friendship. That is, if a is a friend of b, then b is also a friend of a. Each user thus has a non-negative amount of friends. This morning, somebody anonymously sent Bob the following link: [graph realization ...
def main(): n=int(input()) a=list(map(int,input().split())) a.sort(reverse=True) mod=sum(a)%2 counts=[0]*(n+1) for guy in a: counts[guy]+=1 cumcounts=[counts[0]] for i in range(n): cumcounts.append(cumcounts[-1]+counts[i+1]) partialsums=[0] curr=0 for i in ran...
{ "input": [ "2\n0 2\n", "4\n1 1 1 1\n", "35\n21 26 18 4 28 2 15 13 16 25 6 32 11 5 31 17 9 3 24 33 14 27 29 1 20 4 12 7 10 30 34 8 19 23 22\n", "3\n3 3 3\n", "8\n3 8 8 4 8 3 4 3\n", "4\n2 2 3 4\n", "4\n1 2 4 3\n", "5\n5 4 3 2 1\n", "1\n0\n", "3\n3 2 1\n", "4\n4 4 3 3\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Bob is an active user of the social network Faithbug. On this network, people are able to engage in a mutual friendship. That is, if a is a friend of b, then b is also a friend of a. ...
1110_C. Meaningless Operations_10471
Can the greatest common divisor and bitwise operations have anything in common? It is time to answer this question. Suppose you are given a positive integer a. You want to choose some integer b from 1 to a - 1 inclusive in such a way that the [greatest common divisor (GCD)](https://en.wikipedia.org/wiki/Greatest_commo...
import math from sys import stdin q = int(input()) l = stdin.read().splitlines() for i in l: n = int(i) k = int(math.log2(n + 1)) if (1 << k) < n + 1: print((1 << (k + 1)) - 1) continue else: found = False for j in range(2, int(math.sqrt(n)) + 1): if n % j ==...
{ "input": [ "3\n2\n3\n5\n", "1\n228\n", "9\n15\n7\n12\n122\n127\n99\n1999999\n255\n8388607\n", "1\n88\n", "9\n15\n7\n12\n122\n127\n99\n1984716\n255\n8388607\n", "1\n11\n", "9\n30\n7\n12\n122\n127\n99\n1984716\n255\n8388607\n", "1\n19\n", "9\n30\n7\n12\n122\n127\n99\n1984716\n204\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Can the greatest common divisor and bitwise operations have anything in common? It is time to answer this question. Suppose you are given a positive integer a. You want to choose som...
1180_C. Valeriy and Deque_10481
Recently, on the course of algorithms and data structures, Valeriy learned how to use a deque. He built a deque filled with n elements. The i-th element is a_i (i = 1, 2, …, n). He gradually takes the first two leftmost elements from the deque (let's call them A and B, respectively), and then does the following: if A >...
import sys n,q=list(map(int,input().split())) a=list(map(int,input().split())) mx1=max(a) a1=[] dp={} for i in range(q): a1.append(int(input())) if a1==[]: mx=0 else: mx=max(a1) count=0 while(1): count+=1 val1=a[0] val2=a[1] if val1==mx1: break if val1>val2: a.remove(val...
{ "input": [ "5 3\n1 2 3 4 5\n1\n2\n10\n", "2 0\n0 0\n", "71 57\n9 26 80 10 65 60 63 1 15 85 71 1 58 27 41 97 42 15 42 56 87 22 10 28 34 90 13 70 71 56 65 21 0 78 47 96 56 77 32 83 28 16 10 41 0 18 78 12 27 58 4 67 21 41 99 20 21 52 74 10 83 45 43 65 2 15 1 63 46 97 72\n81\n21\n81\n81\n5\n9\n41\n76\n81\n9...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Recently, on the course of algorithms and data structures, Valeriy learned how to use a deque. He built a deque filled with n elements. The i-th element is a_i (i = 1, 2, …, n). He gr...
1199_C. MP3_10485
One common way of digitalizing sound is to record sound intensity at particular time moments. For each time moment intensity is recorded as a non-negative integer. Thus we can represent a sound file as an array of n non-negative integers. If there are exactly K distinct values in the array, then we need k = ⌈ log_{2} ...
from collections import * from math import * n,k = map(int,input().split()) a = list(map(int,input().split())) d = Counter(a) a.sort() val = [0 for i in range(400005)] a = list(set(a)) a.sort() n1 = len(a) val[0] = d[a[0]] for i in range(1,n1): val[i] = val[i-1] + d[a[i]] m = n1 #print(n1) for m in range(n1,0,-1): ...
{ "input": [ "6 2\n2 1 2 3 4 3\n", "6 1\n1 1 2 2 3 3\n", "6 1\n2 1 2 3 4 3\n", "4 2\n2 2 2 1\n", "40 1\n296861916 110348711 213599874 304979682 902720247 958794999 445626005 29685036 968749742 772121742 50110079 72399009 347194050 322418543 594963355 407238845 847251668 210179965 293944170 3008171...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: One common way of digitalizing sound is to record sound intensity at particular time moments. For each time moment intensity is recorded as a non-negative integer. Thus we can represe...
1216_B. Shooting_10489
Recently Vasya decided to improve his pistol shooting skills. Today his coach offered him the following exercise. He placed n cans in a row on a table. Cans are numbered from left to right from 1 to n. Vasya has to knock down each can exactly once to finish the exercise. He is allowed to choose the order in which he wi...
n = map(int, input().split()) A = list(map(int, input().split())) la = [] ind = 1 for a in A: la.append((a, ind)) ind += 1 la.sort(key=lambda x: x[0], reverse=True) # print(la) x = 0 sm = 0 li = [] for tp in la: a = tp[0] sm += (a * x + 1) x += 1 li.append(tp[1]) print(sm) print(" ".join(str(i) for i in li)...
{ "input": [ "3\n20 10 20\n", "2\n1 4\n", "4\n10 10 10 10\n", "6\n5 4 5 4 4 5\n", "5\n13 16 20 18 11\n", "5\n13 16 20 33 11\n", "3\n8 10 20\n", "2\n0 4\n", "6\n5 1 5 4 4 5\n", "5\n13 16 20 33 15\n", "6\n5 1 5 2 4 5\n", "2\n-1 5\n", "6\n5 1 7 2 4 5\n", "3\n8 17 4...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Recently Vasya decided to improve his pistol shooting skills. Today his coach offered him the following exercise. He placed n cans in a row on a table. Cans are numbered from left to ...
1239_C. Queue in the Train_10493
There are n seats in the train's car and there is exactly one passenger occupying every seat. The seats are numbered from 1 to n from left to right. The trip is long, so each passenger will become hungry at some moment of time and will go to take boiled water for his noodles. The person at seat i (1 ≤ i ≤ n) will decid...
import sys reader = (s.rstrip() for s in sys.stdin) input = reader.__next__ from heapq import heappop, heappush, heapify from collections import deque class SWAG_Stack(): def __init__(self, F): self.stack1 = deque() self.stack2 = deque() self.F = F self.len = 0 def push(self, x...
{ "input": [ "5 314\n0 310 942 628 0\n", "100 1000000000\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", "1 1\n1\n", "100 1000000000\n12 803 439 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are n seats in the train's car and there is exactly one passenger occupying every seat. The seats are numbered from 1 to n from left to right. The trip is long, so each passenge...
1257_E. The Contest_10497
A team of three programmers is going to play a contest. The contest consists of n problems, numbered from 1 to n. Each problem is printed on a separate sheet of paper. The participants have decided to divide the problem statements into three parts: the first programmer took some prefix of the statements (some number of...
x,y,z=map(int,input().split()) d=[[],[],[]] d[0]=list(map(int,input().split())) d[1]=list(map(int,input().split())) d[2]=list(map(int,input().split())) dicto=[dict(),dict(),dict()] dp=[[float("inf")]*(x+y+z+1) for i in range(3)] for i in range(3): for j in d[i]: dicto[i][j]=1 dp[0][0]=0 mini=9999999999999 f...
{ "input": [ "2 1 2\n3 1\n4\n2 5\n", "1 5 1\n6\n5 1 2 4 7\n3\n", "3 2 1\n3 2 1\n5 4\n6\n", "2 1 3\n5 6\n4\n1 2 3\n", "5 10 6\n14 3 6 12 21\n7 1 5 8 10 11 13 17 18 20\n9 2 4 15 16 19\n", "11 7 9\n4 8 9 12 14 16 19 21 22 23 27\n1 2 3 11 17 18 26\n5 6 7 10 13 15 20 24 25\n", "1 1 1\n3\n1\n2\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A team of three programmers is going to play a contest. The contest consists of n problems, numbered from 1 to n. Each problem is printed on a separate sheet of paper. The participant...
1280_F. Intergalactic Sliding Puzzle_10500
You are an intergalactic surgeon and you have an alien patient. For the purposes of this problem, we can and we will model this patient's body using a 2 × (2k + 1) rectangular grid. The alien has 4k + 1 distinct organs, numbered 1 to 4k + 1. In healthy such aliens, the organs are arranged in a particular way. For exam...
def solve(k, grid): seek = *range(2*k + 2), *range(4*k + 1, 2*k + 1, -1) flat = [seek[v] for v in grid[0] + grid[1][::-1] if v] m = { 'L': 'l'*2*k + 'u' + 'r'*2*k + 'd', 'R': 'u' + 'l'*2*k + 'd' + 'r'*2*k, 'C': 'l'*k + 'u' + 'r'*k + 'd', 'D': 'CC' + 'R'*(2*k + 1) + 'CC' + 'R...
{ "input": [ "2\n3\n1 2 3 5 6 E 7\n8 9 10 4 11 12 13\n11\n34 45 6 22 16 43 38 44 5 4 41 14 7 29 28 19 9 18 42 8 17 33 1\nE 15 40 36 31 24 10 2 21 11 32 23 30 27 35 25 13 12 39 37 26 20 3\n", "2\n3\n1 2 3 5 6 E 7\n8 9 10 4 11 12 13\n11\n34 45 6 22 16 43 38 44 5 4 41 14 7 29 28 19 9 18 42 8 17 33 1\nE 15 40 36 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are an intergalactic surgeon and you have an alien patient. For the purposes of this problem, we can and we will model this patient's body using a 2 × (2k + 1) rectangular grid. T...
1300_E. Water Balance_10503
There are n water tanks in a row, i-th of them contains a_i liters of water. The tanks are numbered from 1 to n from left to right. You can perform the following operation: choose some subsegment [l, r] (1≤ l ≤ r ≤ n), and redistribute water in tanks l, l+1, ..., r evenly. In other words, replace each of a_l, a_{l+1},...
def main(): from sys import stdin,stdout ans = [] stdin.readline() for ai in map(int, map(int, stdin.readline().split())): cnt=1 while ans and ai*ans[-1][0]<=ans[-1][1]*cnt: c, r = ans.pop() ai+=r cnt+=c ans.append((cnt, ai)) for i, res in...
{ "input": [ "5\n7 8 8 10 12\n", "10\n3 9 5 5 1 7 5 3 8 7\n", "4\n7 5 5 7\n", "3\n20 90 100\n", "13\n987069 989619 960831 976342 972924 961800 954209 956033 998067 984513 977987 963504 985482\n", "3\n20 100 50\n", "2\n100 20\n", "5\n742710 834126 850058 703320 972844\n", "7\n765898...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are n water tanks in a row, i-th of them contains a_i liters of water. The tanks are numbered from 1 to n from left to right. You can perform the following operation: choose so...
1324_F. Maximum White Subtree_10507
You are given a tree consisting of n vertices. A tree is a connected undirected graph with n-1 edges. Each vertex v of this tree has a color assigned to it (a_v = 1 if the vertex v is white and 0 if the vertex v is black). You have to solve the following problem for each vertex v: what is the maximum difference betwee...
import os import sys from io import BytesIO, IOBase from types import GeneratorType from collections import defaultdict BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode or "r"...
{ "input": [ "9\n0 1 1 1 0 0 0 0 1\n1 2\n1 3\n3 4\n3 5\n2 6\n4 7\n6 8\n5 9\n", "4\n0 0 1 0\n1 2\n1 3\n1 4\n", "8\n9 4 1 7 10 1 6 5\n1 2\n2 3\n1 4\n1 5\n5 6\n5 7\n5 8\n", "1\n1337\n", "2\n12345 65432\n2 1\n", "8\n9 4 1 7 10 1 6 5\n1 2\n2 3\n1 4\n1 5\n2 6\n5 7\n5 8\n", "1\n1197\n", "9\n0...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a tree consisting of n vertices. A tree is a connected undirected graph with n-1 edges. Each vertex v of this tree has a color assigned to it (a_v = 1 if the vertex v is...
1343_E. Weights Distributing_10511
You are given an undirected unweighted graph consisting of n vertices and m edges (which represents the map of Bertown) and the array of prices p of length m. It is guaranteed that there is a path between each pair of vertices (districts). Mike has planned a trip from the vertex (district) a to the vertex (district) b...
import collections tests = int(input()) def bfs(start, edges): q = collections.deque([start]) dist = [-1]*(n+1) dist[start] = 0 while(len(q) > 0): curr_node = q.popleft() for idx, neighbour in enumerate(edges[curr_node]): if dist[neighbour] == -1: q.append(n...
{ "input": [ "2\n4 3 2 3 4\n1 2 3\n1 2\n1 3\n1 4\n7 9 1 5 7\n2 10 4 8 5 6 7 3 3\n1 2\n1 3\n1 4\n3 2\n3 5\n4 2\n5 6\n1 7\n6 7\n", "2\n4 3 2 3 4\n1 2 3\n1 2\n1 3\n1 4\n7 9 1 5 7\n2 10 4 8 5 6 7 3 3\n1 2\n1 3\n1 4\n3 2\n3 5\n4 2\n5 6\n1 4\n6 7\n", "2\n4 3 2 3 4\n2 2 3\n1 2\n1 3\n1 4\n7 9 1 5 7\n2 10 4 8 5 6 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given an undirected unweighted graph consisting of n vertices and m edges (which represents the map of Bertown) and the array of prices p of length m. It is guaranteed that th...
1365_F. Swaps Again_10515
Ayush, Ashish and Vivek are busy preparing a new problem for the next Codeforces round and need help checking if their test cases are valid. Each test case consists of an integer n and two arrays a and b, of size n. If after some (possibly zero) operations described below, array a can be transformed into array b, the ...
t = int(input()) for _ in range(t): n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) pair = dict() possible = 1 if n % 2 == 1: if a[n//2] != b[n//2]: possible = 0 for i in range(n//2): M, m = max(a[i], a[n- i - 1]), min(a[i]...
{ "input": [ "5\n2\n1 2\n2 1\n3\n1 2 3\n1 2 3\n3\n1 2 4\n1 3 4\n4\n1 2 3 2\n3 1 2 2\n3\n1 2 3\n1 3 2\n", "24\n4\n1 2 3 4\n1 2 3 4\n4\n1 2 3 4\n1 2 4 3\n4\n1 2 3 4\n1 3 2 4\n4\n1 2 3 4\n1 3 4 2\n4\n1 2 3 4\n1 4 2 3\n4\n1 2 3 4\n1 4 3 2\n4\n1 2 3 4\n2 1 3 4\n4\n1 2 3 4\n2 1 4 3\n4\n1 2 3 4\n2 3 1 4\n4\n1 2 3 4\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Ayush, Ashish and Vivek are busy preparing a new problem for the next Codeforces round and need help checking if their test cases are valid. Each test case consists of an integer n a...
1385_F. Removing Leaves_10519
You are given a tree (connected graph without cycles) consisting of n vertices. The tree is unrooted — it is just a connected undirected graph without cycles. In one move, you can choose exactly k leaves (leaf is such a vertex that is connected to only one another vertex) connected to the same vertex and remove them w...
import os import sys from io import BytesIO, IOBase # region fastio BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode or "r" not in file.mode self.write = self.buffer.wr...
{ "input": [ "4\n8 3\n1 2\n1 5\n7 6\n6 8\n3 1\n6 4\n6 1\n10 3\n1 2\n1 10\n2 3\n1 5\n1 6\n2 4\n7 10\n10 9\n8 10\n7 2\n3 1\n4 5\n3 6\n7 4\n1 2\n1 4\n5 1\n1 2\n2 3\n4 3\n5 3\n", "4\n8 3\n1 2\n1 5\n7 6\n6 8\n3 1\n6 4\n6 1\n10 3\n1 2\n1 10\n2 3\n1 5\n1 6\n2 4\n7 10\n10 9\n8 10\n7 2\n3 1\n2 5\n3 6\n7 4\n1 2\n1 4\n5...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a tree (connected graph without cycles) consisting of n vertices. The tree is unrooted — it is just a connected undirected graph without cycles. In one move, you can ch...
1407_D. Discrete Centrifugal Jumps_10523
There are n beautiful skyscrapers in New York, the height of the i-th one is h_i. Today some villains have set on fire first n - 1 of them, and now the only safety building is n-th skyscraper. Let's call a jump from i-th skyscraper to j-th (i < j) discrete, if all skyscrapers between are strictly lower or higher than ...
n = int(input()) a = list(map(int, input().split())) dp = [10**9]*n dp[0] = 0 s1 = [0] s2 = [0] for i in range(1, n): dp[i] = dp[i-1] + 1 f1, f2 = True, True while s1 and a[i] >= a[s1[-1]]: if a[i] == a[s1[-1]]: f1 = False dp[i] = min(dp[i], dp[s1[-1]] + 1) s1.pop() ...
{ "input": [ "5\n1 3 1 4 5\n", "5\n100 1 100 1 100\n", "4\n4 2 2 4\n", "2\n1 1\n", "4\n2 3 4 2\n", "4\n2 1 3 3\n", "8\n4 2 5 5 1 2 5 2\n", "5\n1 5 5 1 4\n", "4\n1 3 4 2\n", "4\n2 1 5 3\n", "8\n7 2 5 5 1 2 5 2\n", "5\n1 3 1 4 7\n", "8\n7 2 5 5 1 2 2 2\n", "5\n0 5...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are n beautiful skyscrapers in New York, the height of the i-th one is h_i. Today some villains have set on fire first n - 1 of them, and now the only safety building is n-th sk...
1428_B. Belted Rooms_10527
In the snake exhibition, there are n rooms (numbered 0 to n - 1) arranged in a circle, with a snake in each room. The rooms are connected by n conveyor belts, and the i-th conveyor belt connects the rooms i and (i+1) mod n. In the other words, rooms 0 and 1, 1 and 2, …, n-2 and n-1, n-1 and 0 are connected with conveyo...
from sys import stdin import sys tt = int(stdin.readline()) for loop in range(tt): n = int(stdin.readline()) s = stdin.readline()[:-1] if ("<" not in s) or (">" not in s): print (n) continue ans = 0 for i in range(n): if s[(i-1)%n] == "-" or s[i] == "-": ans...
{ "input": [ "4\n4\n-&gt;&lt;-\n5\n&gt;&gt;&gt;&gt;&gt;\n3\n&lt;--\n2\n&lt;&gt;\n", "1\n6\n->>-<-\n", "1\n7\n->>-<<-\n", "1\n15\n--->>>---<<<---\n", "1\n5\n>-<<-\n", "1\n4\n--<>\n", "1\n6\n-<<<->\n", "1\n12\n--->>>---<<<\n", "1\n5\n<<->-\n", "1\n7\n-->>-<-\n", "1\n5\n<<->>\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: In the snake exhibition, there are n rooms (numbered 0 to n - 1) arranged in a circle, with a snake in each room. The rooms are connected by n conveyor belts, and the i-th conveyor be...
1451_B. Non-Substring Subsequence_10531
Hr0d1y has q queries on a binary string s of length n. A binary string is a string containing only characters '0' and '1'. A query is described by a pair of integers l_i, r_i (1 ≤ l_i < r_i ≤ n). For each query, he has to determine whether there exists a good subsequence in s that is equal to the substring s[l_i… r_...
# Problem: B. Non-Substring Subsequence # Contest: Codeforces - Codeforces Round #685 (Div. 2) # URL: https://codeforces.com/contest/1451/problem/B # Memory Limit: 256 MB # Time Limit: 1000 ms # # KAPOOR'S from sys import stdin, stdout def INI(): return int(stdin.readline()) def INL(): return [int(_) for _ in s...
{ "input": [ "2\n6 3\n001000\n2 4\n1 3\n3 5\n4 2\n1111\n1 4\n2 3\n", "2\n6 3\n001000\n2 4\n1 3\n3 5\n4 2\n1111\n1 4\n1 3\n", "2\n6 3\n001000\n2 5\n1 3\n3 5\n4 2\n1111\n1 4\n1 3\n", "2\n6 3\n001000\n2 5\n1 3\n3 5\n4 2\n1011\n1 4\n1 3\n", "2\n6 3\n001000\n2 5\n1 3\n3 4\n4 2\n1011\n1 4\n1 3\n", "...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Hr0d1y has q queries on a binary string s of length n. A binary string is a string containing only characters '0' and '1'. A query is described by a pair of integers l_i, r_i (1 ≤ l_...
1475_B. New Year's Number_10535
Polycarp remembered the 2020-th year, and he is happy with the arrival of the new 2021-th year. To remember such a wonderful moment, Polycarp wants to represent the number n as the sum of a certain number of 2020 and a certain number of 2021. For example, if: * n=4041, then the number n can be represented as the s...
t=int(input()) for T in range(t): n=int(input()) x=n//2020 if (n-x*2020)<=x: print('YES') else: print('NO')
{ "input": [ "5\n1\n4041\n4042\n8081\n8079\n", "1\n2021\n", "1\n2020\n", "3\n2020\n2021\n4040\n", "1\n4040\n", "1\n411\n", "3\n2020\n2021\n4766\n", "5\n1\n4041\n4042\n12391\n8079\n", "3\n307\n2021\n4766\n", "5\n1\n6831\n4042\n12391\n8079\n", "5\n1\n6831\n3971\n12467\n2558\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Polycarp remembered the 2020-th year, and he is happy with the arrival of the new 2021-th year. To remember such a wonderful moment, Polycarp wants to represent the number n as the su...
14_E. Camels_10539
Bob likes to draw camels: with a single hump, two humps, three humps, etc. He draws a camel by connecting points on a coordinate plane. Now he's drawing camels with t humps, representing them as polylines in the plane. Each polyline consists of n vertices with coordinates (x1, y1), (x2, y2), ..., (xn, yn). The first ve...
import sys from array import array # noqa: F401 def input(): return sys.stdin.buffer.readline().decode('utf-8') n, t = map(int, input().split()) dp = [[[0] * 5 for _ in range(2 * t + 1)] for _ in range(n)] dp[0][0] = [0] + [1] * 4 for i in range(n - 1): for j in range(min(2 * t, i + 1)): if (j & ...
{ "input": [ "6 1\n", "4 2\n", "19 10\n", "19 4\n", "20 9\n", "19 7\n", "4 9\n", "19 9\n", "4 1\n", "20 1\n", "19 1\n", "20 10\n", "3 2\n", "5 5\n", "5 10\n", "19 6\n", "6 10\n", "3 3\n", "4 3\n", "5 3\n", "20 4\n", "20 8\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Bob likes to draw camels: with a single hump, two humps, three humps, etc. He draws a camel by connecting points on a coordinate plane. Now he's drawing camels with t humps, represent...
1525_B. Permutation Sort_10543
You are given a permutation a consisting of n numbers 1, 2, ..., n (a permutation is an array in which each element from 1 to n occurs exactly once). You can perform the following operation: choose some subarray (contiguous subsegment) of a and rearrange the elements in it in any way you want. But this operation canno...
k = int(input()) a = [] import math def nhap(): r = input() r = r.split() r =[int(i) for i in r] return r def kq(a): minn = min(a) maxx = max(a) b = sorted(a) if(b == a): return 0 if(a[0]== maxx and a[-1]== minn): return 3 if(a[0]== minn or a[-1]== maxx): return 1 return 2 for i in range(k): num = int(input...
{ "input": [ "3\n4\n1 3 2 4\n3\n1 2 3\n5\n2 1 4 5 3\n", "1\n8\n6 2 3 1 8 4 5 7\n", "1\n8\n6 0 3 1 8 4 5 7\n", "3\n4\n1 3 2 7\n3\n1 2 3\n5\n2 1 4 5 3\n", "1\n8\n5 2 2 1 0 0 2 8\n", "1\n6\n6 0 3 1 8 4 5 7\n", "1\n8\n6 2 6 1 8 4 5 7\n", "1\n8\n6 0 3 1 8 6 5 7\n", "1\n6\n6 0 3 1 8 5 5 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a permutation a consisting of n numbers 1, 2, ..., n (a permutation is an array in which each element from 1 to n occurs exactly once). You can perform the following op...
156_D. Clues_10546
As Sherlock Holmes was investigating another crime, he found a certain number of clues. Also, he has already found direct links between some of those clues. The direct links between the clues are mutual. That is, the direct link between clues A and B and the direct link between clues B and A is the same thing. No more ...
def dfs(node, my_cc): vis[node] = True acc[my_cc]+=1 for i in adj[node]: if not vis[i]: dfs(i, my_cc) def ittDfs(node): queue = [node] curr = 0 while(queue): node = queue.pop() if vis[node]: continue vis[node] = True acc[cc] += 1 ...
{ "input": [ "4 1 1000000000\n1 4\n", "3 0 100\n", "2 0 1000000000\n", "100000 0 1\n", "2 1 100000\n1 2\n", "2 1 819865995\n2 1\n", "83 33 367711297\n14 74\n26 22\n55 19\n8 70\n6 42\n53 49\n54 56\n52 17\n62 44\n78 61\n76 4\n78 30\n51 2\n31 42\n33 67\n45 41\n64 62\n15 25\n33 35\n37 20\n38 6...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: As Sherlock Holmes was investigating another crime, he found a certain number of clues. Also, he has already found direct links between some of those clues. The direct links between t...
177_G1. Fibonacci Strings_10549
Fibonacci strings are defined as follows: * f1 = «a» * f2 = «b» * fn = fn - 1 fn - 2, n > 2 Thus, the first five Fibonacci strings are: "a", "b", "ba", "bab", "babba". You are given a Fibonacci string and m strings si. For each string si, find the number of times it occurs in the given Fibonacci string as...
F = ['', 'a', 'b', 'ba', 'bab', 'babba', 'babbabab', 'babbababbabba', 'babbababbabbababbabab', 'babbababbabbababbababbabbababbabba', 'babbababbabbababbababbabbababbabbababbababbabbababbabab', 'babbababbabbababbababbabbababbabbababbababbabbababbababbabbababbabbababbababbabbababbabba', 'babbababbabbababbababbabbababbabba...
{ "input": [ "6 5\na\nb\nab\nba\naba\n", "50 100\nbb\naa\nb\nbaa\nbbba\naa\nba\na\nabba\nbaa\naa\naab\nab\nbabb\naabb\nbaa\nbaaa\nbaa\naab\nbba\nbb\naba\naaba\nbab\naaba\naa\naaaa\nbabb\nbbb\naaba\naaa\nab\nbab\nb\nb\naa\naaab\naa\nbba\nbaa\nbabb\nbaba\nba\naaba\nbba\nba\nab\nabb\nb\nba\nbbb\nba\naaa\nbbb\nba...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Fibonacci strings are defined as follows: * f1 = «a» * f2 = «b» * fn = fn - 1 fn - 2, n > 2 Thus, the first five Fibonacci strings are: "a", "b", "ba", "bab", "babba". Y...
223_A. Bracket Sequence_10554
A bracket sequence is a string, containing only characters "(", ")", "[" and "]". A correct bracket sequence is a bracket sequence that can be transformed into a correct arithmetic expression by inserting characters "1" and "+" between the original characters of the sequence. For example, bracket sequences "()[]", "([...
import sys from math import gcd,sqrt,ceil,log2 from collections import defaultdict,Counter,deque from bisect import bisect_left,bisect_right import math import heapq from itertools import permutations # input=sys.stdin.readline # def print(x): # sys.stdout.write(str(x)+"\n") # sys.stdin = open('input.txt', 'r') #...
{ "input": [ "(((\n", "([])\n", "(][)\n", "[(()[])]()[()[]]\n", "[[]\n", "(()[))()[]\n", "([]\n", ")[)][)))((([[)]((]][)[)((]([)[)(([)[)]][([\n", "][([))][[))[[((]][([(([[)]]])([)][([([[[[([))]])][[[[[([)]]([[(((]([(](([([[)[(]])(][(((][)[[)][)(][[)[[)])))[)]))]])[([[))(([(]][))([(...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A bracket sequence is a string, containing only characters "(", ")", "[" and "]". A correct bracket sequence is a bracket sequence that can be transformed into a correct arithmetic e...
246_D. Colorful Graph_10558
You've got an undirected graph, consisting of n vertices and m edges. We will consider the graph's vertices numbered with integers from 1 to n. Each vertex of the graph has a color. The color of the i-th vertex is an integer ci. Let's consider all vertices of the graph, that are painted some color k. Let's denote a se...
from collections import defaultdict l=lambda :map(int,input().split()) n,m=l() c=list(l()) graph=defaultdict(set) for i in range(m): a,b=l() if c[a-1]==c[b-1]: continue graph[c[a-1]].add(c[b-1]) graph[c[b - 1]].add(c[a - 1]) d,f=min(c),0 for i in sorted(graph): h=len(graph[i]) if h>f: ...
{ "input": [ "5 6\n4 2 5 2 4\n1 2\n2 3\n3 1\n5 3\n5 4\n3 4\n", "6 6\n1 1 2 3 5 8\n1 2\n3 2\n1 4\n4 3\n4 5\n4 6\n", "10 15\n1 1 1 1 2 2 2 2 1 2\n8 5\n9 1\n8 6\n3 5\n2 7\n2 9\n10 3\n3 2\n3 6\n4 2\n5 9\n7 3\n6 7\n5 10\n4 7\n", "10 9\n1 1 1 1 1 1 1 1 1 1\n5 8\n8 6\n1 8\n8 4\n3 7\n1 10\n1 9\n2 5\n6 9\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You've got an undirected graph, consisting of n vertices and m edges. We will consider the graph's vertices numbered with integers from 1 to n. Each vertex of the graph has a color. T...
271_E. Three Horses_10562
There are three horses living in a horse land: one gray, one white and one gray-and-white. The horses are really amusing animals, which is why they adore special cards. Each of those cards must contain two integers, the first one on top, the second one in the bottom of the card. Let's denote a card with a on the top an...
# written with help of editorial n, m = map(int, input().split()) a = list(map(int, input().split())) def gcd(x, y): while y: x, y = y, x % y return x g = 0 for x in a: g = gcd(g, x - 1) answer = 0 def process(x): global answer if x % 2 == 0: return 0 for i in range(30): ...
{ "input": [ "1 6\n2\n", "2 10\n13 7\n", "1 6\n7\n", "5 1000000000\n812747000 266266300 444091950 694572960 414735290\n", "10 10\n4 8 4 10 2 10 8 10 4 6\n", "5 22\n14 7 14 21 14\n", "1 1000000000\n12\n", "1 1000000000\n1000000000\n", "5 20\n11 11 11 11 11\n", "6 23\n16 16 16 8 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are three horses living in a horse land: one gray, one white and one gray-and-white. The horses are really amusing animals, which is why they adore special cards. Each of those ...
295_B. Greg and Graph_10565
Greg has a weighed directed graph, consisting of n vertices. In this graph any pair of distinct vertices has an edge between them in both directions. Greg loves playing with the graph and now he has invented a new game: * The game consists of n steps. * On the i-th step Greg removes vertex number xi from the grap...
#!/usr/bin/env python3 # from typing import * import sys import io import math import collections import decimal import itertools import bisect import heapq from array import array def input(): return sys.stdin.readline()[:-1] # sys.setrecursionlimit(1000000) # _INPUT = """4 # 0 57148 51001 13357 # 71125 0 98...
{ "input": [ "4\n0 3 1 1\n6 0 400 1\n2 4 0 1\n1 1 1 0\n4 1 2 3\n", "2\n0 5\n4 0\n1 2\n", "1\n0\n1\n", "6\n0 72137 71041 29217 96749 46417\n40199 0 55907 57677 68590 78796\n83463 50721 0 30963 31779 28646\n94529 47831 98222 0 61665 73941\n24397 66286 2971 81613 0 52501\n26285 3381 51438 45360 20160 0\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Greg has a weighed directed graph, consisting of n vertices. In this graph any pair of distinct vertices has an edge between them in both directions. Greg loves playing with the graph...
342_E. Xenia and Tree_10570
Xenia the programmer has a tree consisting of n nodes. We will consider the tree nodes indexed from 1 to n. We will also consider the first node to be initially painted red, and the other nodes — to be painted blue. The distance between two tree nodes v and u is the number of edges in the shortest path between v and u...
class CentroidDecomposition(): def __init__(self, g): self.g = g self.n = len(g) self.parent = [-1]*self.n self.size = [1]*self.n self.cdparent = [-1]*self.n self.cddepth = [0]*self.n self.cdorder = [-1]*self.n self.cdused = [0]*self.n cnt = ...
{ "input": [ "5 4\n1 2\n2 3\n2 4\n4 5\n2 1\n2 5\n1 2\n2 5\n", "5 4\n1 2\n2 3\n2 4\n4 5\n2 1\n2 5\n1 2\n2 1\n", "5 4\n1 2\n2 3\n2 4\n4 5\n2 1\n2 1\n1 2\n2 1\n", "5 4\n1 2\n2 3\n2 4\n1 5\n2 1\n2 5\n1 2\n2 5\n", "5 4\n1 2\n2 3\n2 4\n4 5\n2 1\n1 5\n1 2\n2 1\n", "5 4\n1 2\n2 3\n2 4\n1 5\n2 2\n2 5\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Xenia the programmer has a tree consisting of n nodes. We will consider the tree nodes indexed from 1 to n. We will also consider the first node to be initially painted red, and the o...
366_B. Dima and To-do List_10574
You helped Dima to have a great weekend, but it's time to work. Naturally, Dima, as all other men who have girlfriends, does everything wrong. Inna and Dima are now in one room. Inna tells Dima off for everything he does in her presence. After Inna tells him off for something, she goes to another room, walks there in ...
n,k = map(int, input().split()) t = list(map(int, input().split())) current_sum = None flag = 1 for i in range(k): if current_sum == None or sum(t[i :: k]) < current_sum: current_sum = sum(t[i :: k]) flag = i+1 print(flag) #print(min((sum(t[i :: k]), i) for i in range(k))[1] + 1)
{ "input": [ "10 5\n1 3 5 7 9 9 4 1 8 5\n", "6 2\n3 2 1 6 5 4\n", "20 4\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n", "4 2\n2 1 1 3\n", "50 10\n1 2 3 4 5 6 7 8 9 10 10 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1\n", "10 10\n8 4 5 7 6 9 2 2 3 5\n", "2 1\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You helped Dima to have a great weekend, but it's time to work. Naturally, Dima, as all other men who have girlfriends, does everything wrong. Inna and Dima are now in one room. Inna...
38_A. Army_10578
The Berland Armed Forces System consists of n ranks that are numbered using natural numbers from 1 to n, where 1 is the lowest rank and n is the highest rank. One needs exactly di years to rise from rank i to rank i + 1. Reaching a certain rank i having not reached all the previous i - 1 ranks is impossible. Vasya ha...
#!/usr/bin/python3 def readln(): return tuple(map(int, input().split())) n, = readln() d = readln() a, b = readln() print(sum(d[a - 1:b - 1]))
{ "input": [ "3\n5 6\n1 2\n", "3\n5 6\n1 3\n", "80\n65 15 43 6 43 98 100 16 69 98 4 54 25 40 2 35 12 23 38 29 10 89 30 6 4 8 7 96 64 43 11 49 89 38 20 59 54 85 46 16 16 89 60 54 28 37 32 34 67 9 78 30 50 87 58 53 99 48 77 3 5 6 19 99 16 20 31 10 80 76 82 56 56 83 72 81 84 60 28\n18 24\n", "51\n85 38 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The Berland Armed Forces System consists of n ranks that are numbered using natural numbers from 1 to n, where 1 is the lowest rank and n is the highest rank. One needs exactly di ye...
409_I. Feed the Golorp_10582
Golorps are mysterious creatures who feed on variables. Golorp's name is a program in some programming language. Some scientists believe that this language is Befunge; golorps are tantalizingly silent. Variables consumed by golorps can take values from 0 to 9, inclusive. For each golorp its daily diet is defined by it...
""" Codeforces April Fools Contest 2014 Problem I Author : chaotic_iak Language: Python 3.3.4 """ class InputHandlerObject(object): inputs = [] def getInput(self, n = 0): res = "" inputs = self.inputs if not inputs: inputs.extend(input().split(" ")) if n == 0: res...
{ "input": [ "?(__-_+_/_____):-__&gt;__,_____&lt;__.\n", "?(______________________/____+_______*__-_____*______-___):-__&lt;___,___&lt;____,____&lt;_____,_____&lt;______,______&lt;_______.\n", "?(__+___+__-___):-___&gt;__.\n", "?(_-_/___*__):-___&gt;__.\n", "?(____________*___________*__________*_...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Golorps are mysterious creatures who feed on variables. Golorp's name is a program in some programming language. Some scientists believe that this language is Befunge; golorps are tan...
437_D. The Child and Zoo_10586
Of course our child likes walking in a zoo. The zoo has n areas, that are numbered from 1 to n. The i-th area contains ai animals in it. Also there are m roads in the zoo, and each road connects two distinct areas. Naturally the zoo is connected, so you can reach any area of the zoo from any other area using the roads....
R = lambda:map(int, input().split()) n, m = R() a = list(R()) p, f, sz =[], [], [] e = [[] for i in range(n)] vis = [0] * n ans = 0 def find(u): if f[u] != u: f[u] = find(f[u]) return f[u] for i in range(n): p.append([a[i], i]) f.append(i) sz.append(1) p.sort() p.reverse() for i in range(m)...
{ "input": [ "4 3\n10 20 30 40\n1 3\n2 3\n4 3\n", "7 8\n40 20 10 30 20 50 40\n1 2\n2 3\n3 4\n4 5\n5 6\n6 7\n1 4\n5 7\n", "3 3\n10 20 30\n1 2\n2 3\n3 1\n", "10 19\n15704 19758 26631 25050 22778 15041 8487 26418 5136 4199\n1 2\n1 3\n1 4\n2 5\n1 6\n2 7\n2 8\n7 9\n6 10\n7 3\n4 7\n6 4\n6 8\n5 8\n6 9\n5 4\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Of course our child likes walking in a zoo. The zoo has n areas, that are numbered from 1 to n. The i-th area contains ai animals in it. Also there are m roads in the zoo, and each ro...
506_E. Mr. Kitayuta's Gift_10594
Mr. Kitayuta has kindly given you a string s consisting of lowercase English letters. You are asked to insert exactly n lowercase English letters into s to make it a palindrome. (A palindrome is a string that reads the same forward and backward. For example, "noon", "testset" and "a" are all palindromes, while "test" a...
palindrom = lambda s: s == s[::-1] printans = lambda l: print(''.join(l)) s = list(input()) for i in range(len(s)+1): for letter in 'abcdefghijklmnopqrstvwuxyz': tmp = s[:] tmp.insert(i,letter) if palindrom(tmp): printans(tmp) exit() print('NA')
{ "input": [ "add\n2\n", "revive\n1\n", "noon\n5\n", "lsdijfjisl\n1\n", "lsdijfjisl\n209\n", "nsngnnnnnnnnnnvnnnnnbe\n948\n", "squirrel\n32\n", "cnonnpbnpptppgntggtggtngpptppnbpnnonc\n294295\n", "k\n46277432\n", "nevceypryxidffdixyrpyecven\n2916\n", "yosupo\n2\n", "irrj...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Mr. Kitayuta has kindly given you a string s consisting of lowercase English letters. You are asked to insert exactly n lowercase English letters into s to make it a palindrome. (A pa...
556_A. Case of the Zeros and Ones_10598
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length n consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, and ...
n = int(input()) s = input() x = s.count('0') y = s.count('1') print(abs(x-y))
{ "input": [ "4\n1100\n", "8\n11101111\n", "5\n01010\n", "7\n1110000\n", "1\n0\n", "6\n110110\n", "2\n11\n", "8\n01011100\n", "2\n00\n", "6\n110100\n", "6\n010111\n", "3\n001\n", "6\n110010\n", "1\n1\n", "6\n001011\n", "9\n011111101\n", "2\n10\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length n consisting o...
581_E. Kojiro and Furrari_10602
Motorist Kojiro spent 10 years saving up for his favorite car brand, Furrari. Finally Kojiro's dream came true! Kojiro now wants to get to his girlfriend Johanna to show off his car to her. Kojiro wants to get to his girlfriend, so he will go to her along a coordinate line. For simplicity, we can assume that Kojiro is...
import os,io input=io.BytesIO(os.read(0,os.fstat(0).st_size)).readline e,s,n,m=map(int,input().split()) fuel1=[] fuel2=[] fuel3=[] keymoments=[] for i in range(n): t,x=map(int,input().split()) if t==1: fuel1.append(x) if t==2: fuel2.append(x) if t==3: fuel3.append(x) keymoments.append(x) keymome...
{ "input": [ "9 3 2 3\n2 3\n1 6\n-1 0 1\n", "20 9 2 4\n1 5\n2 10\n-1 0 1 2\n", "8 4 1 1\n2 4\n0\n", "386 20 29 30\n1 349\n2 482\n1 112\n1 93\n2 189\n1 207\n2 35\n2 -5\n1 422\n1 442\n1 402\n2 238\n3 258\n3 54\n2 369\n2 290\n2 329\n3 74\n3 -62\n2 170\n1 462\n2 15\n2 222\n1 309\n3 150\n1 -25\n3 130\n1 27...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Motorist Kojiro spent 10 years saving up for his favorite car brand, Furrari. Finally Kojiro's dream came true! Kojiro now wants to get to his girlfriend Johanna to show off his car t...
626_B. Cards_10608
Catherine has a deck of n cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: * take any two (not necessarily adjacent) cards with different colors and exchange them for a new card of the third color; * take any two (not necessarily adj...
''' Author : Md. Rezwanul Haque Email : r.haque.249.rh@gmail.com ''' import sys from sys import stdout,stdin input = lambda : sys.stdin.readline() if __name__ == '__main__': n = int(input()) s = input() s = (s.count('B'), s.count('G'), s.count('R')) if s[0] > 0 and s[1] > 0 and s[2] > 0: stdo...
{ "input": [ "2\nRB\n", "5\nBBBBB\n", "3\nGRG\n", "2\nRG\n", "6\nGRRGBB\n", "1\nB\n", "4\nRBGB\n", "7\nBBBGBRG\n", "3\nGGR\n", "102\nGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGRGGGGGGGGBGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG\n", "3\nGGB\n", "1\nR\n", "5\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Catherine has a deck of n cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: * take any two (not nece...
675_C. Money Transfers_10612
There are n banks in the city where Vasya lives, they are located in a circle, such that any two banks are neighbouring if their indices differ by no more than 1. Also, bank 1 and bank n are neighbours if n > 1. No bank is a neighbour of itself. Vasya has an account in each bank. Its balance may be negative, meaning V...
n = int(input()) b = list(map(int, input().split())) from collections import Counter from itertools import accumulate cum = list(accumulate(b)) cnt = Counter(cum) print (n - cnt.most_common(1)[0][1])
{ "input": [ "3\n5 0 -5\n", "4\n-1 0 1 0\n", "4\n1 2 3 -6\n", "6\n1 -1 1 -1 1 -1\n", "50\n108431864 128274949 -554057370 -384620666 -202862975 -803855410 -482167063 -55139054 -215901009 0 0 0 0 0 94325701 730397219 358214459 -673647271 -131397668 -377892440 0 0 0 0 0 -487994257 -360271553 63998832...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are n banks in the city where Vasya lives, they are located in a circle, such that any two banks are neighbouring if their indices differ by no more than 1. Also, bank 1 and ban...
699_D. Fix a Tree_10616
A tree is an undirected connected graph without cycles. Let's consider a rooted undirected tree with n vertices, numbered 1 through n. There are many ways to represent such a tree. One way is to create an array with n integers p1, p2, ..., pn, where pi denotes a parent of vertex i (here, for convenience a root is cons...
input() A = list(map(int, input().split(' '))) root=-1 for i,a in enumerate(A) : if i == a-1 : root = i break v = [False]*len(A) if root>-1 : v[root]=True ans= 0 for i,a in enumerate(A) : if v[i] : continue v[i]= True l=[i] a-=1 while not v[a] : l.append(a) ...
{ "input": [ "5\n3 2 2 5 3\n", "4\n2 3 3 4\n", "8\n2 3 5 4 1 6 6 7\n", "7\n1 2 3 4 5 6 7\n", "7\n4 3 2 6 3 5 2\n", "6\n6 2 6 2 4 2\n", "8\n2 1 2 2 6 5 6 6\n", "7\n7 5 3 1 2 1 5\n", "3\n2 1 1\n", "7\n1 6 4 4 5 6 7\n", "18\n2 3 4 5 2 7 8 9 10 7 11 12 14 15 13 17 18 18\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A tree is an undirected connected graph without cycles. Let's consider a rooted undirected tree with n vertices, numbered 1 through n. There are many ways to represent such a tree. O...
741_C. Arpa’s overnight party and Mehrdad’s silent entering_10623
Note that girls in Arpa’s land are really attractive. Arpa loves overnight parties. In the middle of one of these parties Mehrdad suddenly appeared. He saw n pairs of friends sitting around a table. i-th pair consisted of a boy, sitting on the ai-th chair, and his girlfriend, sitting on the bi-th chair. The chairs wer...
import sys def solve(): n = int(input()) partner = [0]*(2*n) pacani = [] for line in sys.stdin: pacan, telka = [int(x) - 1 for x in line.split()] partner[pacan] = telka partner[telka] = pacan pacani.append(pacan) khavka = [None]*(2*n) for i in range(2*n): ...
{ "input": [ "3\n1 4\n2 5\n3 6\n", "6\n2 11\n7 1\n12 8\n4 10\n3 9\n5 6\n", "26\n8 10\n52 21\n2 33\n18 34\n30 51\n5 19\n22 32\n36 28\n42 16\n13 49\n11 17\n31 39\n43 37\n50 15\n29 20\n35 46\n47 23\n3 1\n44 7\n9 27\n6 48\n40 24\n26 14\n45 4\n12 25\n41 38\n", "7\n3 14\n7 4\n13 10\n11 8\n6 1\n5 9\n2 12\n",...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Note that girls in Arpa’s land are really attractive. Arpa loves overnight parties. In the middle of one of these parties Mehrdad suddenly appeared. He saw n pairs of friends sitting...
765_B. Code obfuscation_10627
Kostya likes Codeforces contests very much. However, he is very disappointed that his solutions are frequently hacked. That's why he decided to obfuscate (intentionally make less readable) his code before upcoming contest. To obfuscate the code, Kostya first looks at the first variable name used in his program and rep...
Alphabet = "abcdefghijklmnopqrstuvwxyz" X = input() Checked = [] i, Index = 0, 0 while i < len(X): if X[i] not in Checked and X[i] == Alphabet[Index]: Checked.append(Alphabet[Index]) Index += 1 elif X[i] not in Checked and X[i] != Alphabet[Index]: print("NO") exit() i += 1 pr...
{ "input": [ "jinotega\n", "abacaba\n", "ac\n", "za\n", "bab\n", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Kostya likes Codeforces contests very much. However, he is very disappointed that his solutions are frequently hacked. That's why he decided to obfuscate (intentionally make less read...
80_A. Panoramix's Prediction_10633
A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after x is the smallest prime number greater than x. For example, the next prime number after 2 is 3, and the next prime number after 3 is 5. Note that ...
from math import ceil, sqrt def array(arr, struc): return (list(map(struc, arr.split()))) def isPrime(x): for i in range(2, ceil(sqrt(x))+1): if x % i == 0: return False return True arr = array(input(), int) prime1 = arr[0] prime2 = arr[1] counter = 0 tmp = prime1 + 1 while tmp ...
{ "input": [ "7 9\n", "3 5\n", "7 11\n", "2 6\n", "31 33\n", "2 11\n", "41 49\n", "13 17\n", "23 29\n", "7 8\n", "5 13\n", "47 50\n", "43 47\n", "17 19\n", "5 9\n", "2 50\n", "2 3\n", "3 7\n", "13 20\n", "11 13\n", "19 23\n", "5 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after x is the ...
855_B. Marvolo Gaunt's Ring_10640
Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a Horcrux. Although he destroyed it, he is still affected by its curse. Professor Snape is helping Dumbledore remove the curse. For this, he...
cin=lambda:map(int,input().split()) n,p,q,r=cin() A=cin() tp,tq,tr=-1e20,-1e20,-1e20 for a in A: tp=max(tp,p*a) tq=max(tq,tp+q*a) tr=max(tr,tq+r*a) print(tr) # Made By Mostafa_Khaled
{ "input": [ "5 1 2 -3\n-1 -2 -3 -4 -5\n", "5 1 2 3\n1 2 3 4 5\n", "1 1000000000 1000000000 1000000000\n1000000000\n", "1 -1000000000 -1000000000 -1000000000\n1000000000\n", "1 999999999 999999999 999999999\n-999999999\n", "1 1000000000 1000000000 1000000000\n-1000000000\n", "3 -2 3 -2\n1 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a H...
903_B. The Modcrab_10646
Vova is again playing some computer game, now an RPG. In the game Vova's character received a quest: to slay the fearsome monster called Modcrab. After two hours of playing the game Vova has tracked the monster and analyzed its tactics. The Modcrab has h2 health points and an attack power of a2. Knowing that, Vova has...
class Character: def __init__(self, hPoints, attPoints, healPoints): self.hPoints = hPoints self.attPoints = attPoints self.healPoints = healPoints def attack(self, boss): boss.setHP(boss.getHP() - self.attPoints) def recAttack(self, boss): self.hPoints -= boss.getAP(...
{ "input": [ "10 6 100\n17 5\n", "11 6 100\n12 5\n", "6 6 100\n12 5\n", "79 4 68\n9 65\n", "50 1 2\n70 1\n", "1 1 100\n100 99\n", "12 12 19\n83 8\n", "5 12 11\n4 2\n", "25 27 91\n10 87\n", "9 76 78\n86 69\n", "1 1 2\n3 1\n", "9 1 20\n4 19\n", "14 5 2\n99 1\n", "...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Vova is again playing some computer game, now an RPG. In the game Vova's character received a quest: to slay the fearsome monster called Modcrab. After two hours of playing the game ...
925_C. Big Secret_10650
Vitya has learned that the answer for The Ultimate Question of Life, the Universe, and Everything is not the integer 54 42, but an increasing integer sequence a_1, …, a_n. In order to not reveal the secret earlier than needed, Vitya encrypted the answer and obtained the sequence b_1, …, b_n using the following rules: ...
n=int(input()) s=[[] for i in range(60)] for b in list(map(int,input().split())): for i in range(59,-1,-1): if b>>i&1: s[i].append(b) break ans=[] cur=0 for i in range(n): fl=False for j in range(60): if s[j]!=[] and cur>>j&1==0: ans.append(s[j][-1]) cur^=s[j][-1] s[j].pop() fl=True break i...
{ "input": [ "3\n1 2 3\n", "6\n4 7 7 12 31 61\n", "1\n4\n", "5\n3 1 1 7 1\n", "2\n531 108\n", "10\n10 1 1 1 1 1 3 6 7 3\n", "31\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 7 7 7 7 15 15 31\n", "1\n3\n", "5\n3 1 1 6 1\n", "2\n610 108\n", "1\n6\n", "2\n610 14\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Vitya has learned that the answer for The Ultimate Question of Life, the Universe, and Everything is not the integer 54 42, but an increasing integer sequence a_1, …, a_n. In order to...
954_D. Fight Against Traffic_10654
Little town Nsk consists of n junctions connected by m bidirectional roads. Each road connects two distinct junctions and no two roads connect the same pair of junctions. It is possible to get from any junction to any other junction by these roads. The distance between two junctions is equal to the minimum possible num...
from collections import deque def bfs(s, graph): q = deque() d = [0] * len(graph) used = [False] * len(graph) used[s] = True q.append(s) while len(q): cur = q[0] q.popleft() for to in graph[cur]: if not used[to]: used[to] = True ...
{ "input": [ "5 4 3 5\n1 2\n2 3\n3 4\n4 5\n", "5 6 1 5\n1 2\n1 3\n1 4\n4 5\n3 5\n2 5\n", "5 4 1 5\n1 2\n2 3\n3 4\n4 5\n", "3 3 2 3\n1 2\n2 3\n1 3\n", "2 1 2 1\n1 2\n", "3 2 2 3\n1 2\n2 3\n", "3 2 1 3\n1 2\n2 3\n", "3 2 1 1\n1 2\n2 3\n", "3 3 3 3\n1 2\n2 3\n1 3\n", "5 4 3 5\n1 4...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Little town Nsk consists of n junctions connected by m bidirectional roads. Each road connects two distinct junctions and no two roads connect the same pair of junctions. It is possib...
980_C. Posterized_10658
Professor Ibrahim has prepared the final homework for his algorithm’s class. He asked his students to implement the Posterization Image Filter. Their algorithm will be tested on an array of integers, where the i-th integer represents the color of the i-th pixel in the image. The image is in black and white, therefore ...
R = lambda: map(int, input().split()) n, k = R() a = list(range(0, 257)); v = [1]*257 for p in R(): if v[p]: t = p while t >= 0 and p-a[t]<=k-1: t -= 1 t += 1 for i in range(t, p+1): a[i] = a[t]; v[i] = 0 print(a[p], end=' ')
{ "input": [ "5 2\n0 2 1 255 254\n", "4 3\n2 14 3 4\n", "10 3\n112 184 161 156 118 231 191 128 91 229\n", "9 3\n174 149 118 124 166 146 219 233 107\n", "1 4\n51\n", "8 4\n180 195 13 195 61 24 132 160\n", "4 2\n122 108 224 154\n", "3 3\n212 167 3\n", "2 4\n218 213\n", "100 7\n39...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Professor Ibrahim has prepared the final homework for his algorithm’s class. He asked his students to implement the Posterization Image Filter. Their algorithm will be tested on an a...
9_C. Hexadecimal's Numbers_10662
One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a huge amount of n different natural numbers from 1 to n to obtain total control over her energy. But his plan failed. The reason for this w...
n=int(input()) a=[] c=int for i in range(515): a.append(c(bin(i)[2:])) a.remove(0) ans=0 for i in a: if i<=n: ans+=1 print(ans)
{ "input": [ "10\n", "100\n", "1010011\n", "1\n", "999999999\n", "112\n", "101\n", "121212121\n", "99\n", "101010101\n", "901556123\n", "2\n", "312410141\n", "1000000000\n", "100100\n", "111111111\n", "100111001\n", "745\n", "7\n", "83251...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a hu...
p02546 AtCoder Beginner Contest 179 - Plural Form_10675
In the Kingdom of AtCoder, people use a language called Taknese, which uses lowercase English letters. In Taknese, the plural form of a noun is spelled based on the following rules: * If a noun's singular form does not end with `s`, append `s` to the end of the singular form. * If a noun's singular form ends with `s`...
n=input() if( n[-1]=='s'): n+='es' else: n+='s' print(n)
{ "input": [ "box", "bus", "apple", "aox", "bsu", "aeplp", "xoa", "bsv", "eaplp", "xo`", "csv", "daplp", "xp`", "crv", "d`plp", "px`", "vrc", "c`plp", "xn`", "vsc", "c_plp", "`nx", "urc", "plp_c", "`mx", "usc", ...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: In the Kingdom of AtCoder, people use a language called Taknese, which uses lowercase English letters. In Taknese, the plural form of a noun is spelled based on the following rules: ...
p02677 AtCoder Beginner Contest 168 - : (Colon)_10679
Consider an analog clock whose hour and minute hands are A and B centimeters long, respectively. An endpoint of the hour hand and an endpoint of the minute hand are fixed at the same point, around which each hand rotates clockwise at constant angular velocity. It takes the hour and minute hands 12 hours and 1 hour to ...
from math import * a,b,h,m = map(int, input().split()) d = radians(fabs(((11*m)/2) - (30 * h))) print(sqrt(a**2 + b**2 - 2*a*b*cos(d)))
{ "input": [ "3 4 9 0", "3 4 10 40", "3 4 13 0", "3 1 10 40", "3 4 17 0", "3 1 10 59", "6 4 17 0", "3 2 10 59", "9 4 17 0", "3 2 10 89", "9 4 21 0", "3 2 1 89", "9 4 21 1", "3 3 1 89", "5 4 21 1", "3 6 1 89", "5 4 16 1", "3 6 1 158", "5 4 8 1...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Consider an analog clock whose hour and minute hands are A and B centimeters long, respectively. An endpoint of the hour hand and an endpoint of the minute hand are fixed at the same...
p02805 AtCoder Beginner Contest 151 - Enclose All_10683
Given are N points (x_i, y_i) in a two-dimensional plane. Find the minimum radius of a circle such that all the points are inside or on it. Constraints * 2 \leq N \leq 50 * 0 \leq x_i \leq 1000 * 0 \leq y_i \leq 1000 * The given N points are all different. * The values in input are all integers. Input Input is giv...
n = int(input()) xy=[list(map(int,input().split())) for i in range(n)] import math def calc(x1, y1, x2, y2, x3, y3): try: d = 2 * ((y1 - y3) * (x1 - x2) - (y1 - y2) * (x1 - x3)) x = ((y1 - y3) * (y1 ** 2 - y2 ** 2 + x1 ** 2 - x2 ** 2) - (y1 - y2) * (y1 ** 2 - y3 ** 2 + x1 ** 2 - x3 ** 2)) / d ...
{ "input": [ "3\n0 0\n0 1\n1 0", "2\n0 0\n1 0", "10\n10 9\n5 9\n2 0\n0 0\n2 7\n3 3\n2 5\n10 0\n3 7\n1 9", "3\n0 0\n1 1\n1 0", "10\n10 9\n5 9\n2 0\n0 0\n2 7\n3 3\n2 5\n10 0\n5 7\n1 9", "2\n0 1\n2 0", "2\n0 2\n2 0", "3\n0 1\n0 1\n3 0", "3\n0 1\n0 2\n3 0", "2\n-1 2\n2 2", "2\n...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Given are N points (x_i, y_i) in a two-dimensional plane. Find the minimum radius of a circle such that all the points are inside or on it. Constraints * 2 \leq N \leq 50 * 0 \leq ...
p02941 AtCoder Grand Contest 037 - Numbers on a Circle_10687
There are N positive integers arranged in a circle. Now, the i-th number is A_i. Takahashi wants the i-th number to be B_i. For this objective, he will repeatedly perform the following operation: * Choose an integer i such that 1 \leq i \leq N. * Let a, b, c be the (i-1)-th, i-th, and (i+1)-th numbers, respectively. ...
n,*t=map(int,open(0).read().split());A=t[:n];B=t[n:];r=0 while 1: c=0 for i in range(n): b=B[~-i%n]+B[-~i%n] if A[i]<B[i]>b:t=(B[i]-A[i])//b;c+=t;B[i]-=t*b r+=c if c==0:break print([-1,r][A==B])
{ "input": [ "5\n5 6 5 2 1\n9817 1108 6890 4343 8704", "4\n1 2 3 4\n2 3 4 5", "3\n1 1 1\n13 5 7", "5\n5 6 5 2 1\n9053 1108 6890 4343 8704", "3\n1 1 1\n13 1 7", "4\n0 2 3 4\n2 3 4 5", "3\n2 1 1\n13 5 7", "5\n5 6 5 2 1\n9053 1108 6890 4343 13928", "4\n0 2 3 4\n2 2 4 5", "3\n2 1 1...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are N positive integers arranged in a circle. Now, the i-th number is A_i. Takahashi wants the i-th number to be B_i. For this objective, he will repeatedly perform the followi...
p03078 AtCoder Beginner Contest 123 - Cake 123_10691
The Patisserie AtCoder sells cakes with number-shaped candles. There are X, Y and Z kinds of cakes with 1-shaped, 2-shaped and 3-shaped candles, respectively. Each cake has an integer value called deliciousness, as follows: * The deliciousness of the cakes with 1-shaped candles are A_1, A_2, ..., A_X. * The deliciousn...
from heapq import nlargest x,y,z,k=map(int,input().split()) a=list(map(int,input().split())) b=list(map(int,input().split())) c=list(map(int,input().split())) ab=nlargest(k,(x+y for x in a for y in b)) abc=nlargest(k,(xy+z for xy in ab for z in c)) for i in abc: print(i)
{ "input": [ "2 2 2 8\n4 6\n1 5\n3 8", "10 10 10 20\n7467038376 5724769290 292794712 2843504496 3381970101 8402252870 249131806 6310293640 6690322794 6082257488\n1873977926 2576529623 1144842195 1379118507 6003234687 4925540914 3902539811 3326692703 484657758 2877436338\n4975681328 8974383988 2882263257 76902...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The Patisserie AtCoder sells cakes with number-shaped candles. There are X, Y and Z kinds of cakes with 1-shaped, 2-shaped and 3-shaped candles, respectively. Each cake has an integer...
p03221 AtCoder Beginner Contest 113 - ID_10695
In Republic of Atcoder, there are N prefectures, and a total of M cities that belong to those prefectures. City i is established in year Y_i and belongs to Prefecture P_i. You can assume that there are no multiple cities that are established in the same year. It is decided to allocate a 12-digit ID number to each ci...
from collections import defaultdict (n, m), *q = [[*map(int, i.split())] for i in open(0)] d = defaultdict(list) for k, v in q: d[k].append(v) c = defaultdict(dict) for k, v in d.items(): for i, j in enumerate(sorted(v)): c[k][j] = i + 1 for p, y in q: print("{:0>6}{:0>6}".format(p, c[p][y]))
{ "input": [ "2 3\n1 32\n2 63\n1 12", "2 3\n2 55\n2 77\n2 99", "2 3\n1 55\n2 77\n2 99", "2 3\n2 32\n2 63\n1 12", "2 1\n2 55\n2 77\n2 99", "2 2\n2 55\n2 77\n2 99", "2 3\n2 55\n2 77\n2 195", "2 3\n1 32\n2 63\n1 6", "2 3\n2 39\n2 16\n1 12", "2 2\n2 55\n2 29\n2 195", "2 3\n2 96...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: In Republic of Atcoder, there are N prefectures, and a total of M cities that belong to those prefectures. City i is established in year Y_i and belongs to Prefecture P_i. You can a...
p03369 AtCoder Beginner Contest 095 - Something on It_10699
In "Takahashi-ya", a ramen restaurant, a bowl of ramen costs 700 yen (the currency of Japan), plus 100 yen for each kind of topping (boiled egg, sliced pork, green onions). A customer ordered a bowl of ramen and told which toppings to put on his ramen to a clerk. The clerk took a memo of the order as a string S. S is ...
s = input().count('o') print(700 + s*100)
{ "input": [ "oxo", "xxx", "ooo", "pxo", "yxx", "opo", "oxp", "xyx", "opn", "xpo", "xzx", "npo", "opx", "yzx", "npn", "xpn", "xzy", "mpn", "npx", "wzy", "mpm", "nxp", "zwy", "npm", "mxp", "ywz", "nmp", "nxo...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: In "Takahashi-ya", a ramen restaurant, a bowl of ramen costs 700 yen (the currency of Japan), plus 100 yen for each kind of topping (boiled egg, sliced pork, green onions). A custome...
p03845 AtCoder Beginner Contest 050 - Contest with Drinks Easy_10706
Joisino is about to compete in the final round of a certain programming competition. In this contest, there are N problems, numbered 1 through N. Joisino knows that it takes her T_i seconds to solve problem i(1≦i≦N). Also, there are M kinds of drinks offered to the contestants, numbered 1 through M. If Joisino takes d...
N = int(input()) T = list(map(int,input().split())) M = int(input()) sumT = sum(T) for _ in range(M): p,x = map(int,input().split()) print(sumT+x-T[p-1])
{ "input": [ "3\n2 1 4\n2\n1 1\n2 3", "5\n7 2 3 8 5\n3\n4 2\n1 7\n4 13", "3\n2 1 4\n2\n1 1\n0 3", "5\n7 2 3 10 5\n3\n4 2\n1 7\n4 13", "3\n2 1 4\n2\n1 1\n0 6", "5\n7 4 3 10 5\n3\n4 2\n1 7\n4 13", "3\n2 1 4\n2\n1 0\n2 3", "3\n2 1 4\n2\n1 0\n0 3", "5\n7 2 3 10 5\n3\n4 2\n1 7\n4 20", ...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Joisino is about to compete in the final round of a certain programming competition. In this contest, there are N problems, numbered 1 through N. Joisino knows that it takes her T_i s...
p04012 AtCoder Beginner Contest 044 - Beautiful Strings_10710
Let w be a string consisting of lowercase letters. We will call w beautiful if the following condition is satisfied: * Each lowercase letter of the English alphabet occurs even number of times in w. You are given the string w. Determine if w is beautiful. Constraints * 1 \leq |w| \leq 100 * w consists of lowercas...
s=input() for k in s: if s.count(k)%2!=0: print('No') break else: print('Yes')
{ "input": [ "abaccaba", "hthth", "ab`ccaba", "ab`cc`ba", "hthtg", "hghtt", "`b`cc`ba", "hgtth", "ab`cc`b`", "hgtuh", "`b`cc`ca", "hgsth", "`b_cc`ca", "hfsth", "`b_dc`ca", "hfsti", "`b_dc`da", "hgsti", "ad`cd_b`", "hgssi", "ad`cd_a`",...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Let w be a string consisting of lowercase letters. We will call w beautiful if the following condition is satisfied: * Each lowercase letter of the English alphabet occurs even numbe...
p00098 Maximum Sum Sequence II_10714
Matrix of given integers a1,1 a1,2 ... a1, n a2,1 a2,2 ... a2, n :: an, 1 an, 2 ... an, n Then, create a program that outputs the maximum value of the sum of one or more consecutive terms (submatrix) in the vertical and horizontal directions and ends. Input The input data is given in the following format. n a...
n = int(input()) s = [[0 for i in range(n + 1)] for j in range(n + 1)] for r in range(n): inp = list(map(int, input().split())) for c in range(n): s[r + 1][c + 1] = inp[c] + s[r][c + 1] ans = -10001 for r_end in range(1, n + 1): for r_start in range(r_end): dp = [-10001] for c in ...
{ "input": [ "3\n1 -2 3\n-4 5 6\n7 8 -9", "4\n1 3 -9 2\n2 7 -1 5\n-8 3 2 -1\n5 0 -3 1", "3\n1 -2 3\n-1 5 6\n7 8 -9", "4\n1 3 -9 2\n2 7 -1 5\n-8 3 2 -1\n5 -1 -3 1", "3\n1 -2 3\n-1 5 6\n6 8 -15", "4\n1 3 -9 0\n2 7 -1 5\n-8 3 2 -2\n3 -1 -3 1", "3\n1 -2 5\n-1 3 1\n6 8 -25", "4\n1 3 -9 0\n2...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Matrix of given integers a1,1 a1,2 ... a1, n a2,1 a2,2 ... a2, n :: an, 1 an, 2 ... an, n Then, create a program that outputs the maximum value of the sum of one or more consecuti...
p00230 Ninja Climbing_10718
Ninja Atsushi guards the town from the roof of the Ninja Building from early morning to late night every day. This Ninja Building is two adjacent buildings of the same floor, and Atsushi's daily routine is to jump between buildings and head to the rooftop for security. Because these two buildings are cleaned frequentl...
def bfs(b): mem=[[False for i in range(n)]for j in range(2)] st=[0,0] for i in range(2): if b[i][0]!=1:continue while st[i]<n-1 and b[i][st[i]+1]==1: st[i]+=1 if st[i]==n-1:return 0 mem[0][st[0]]=True mem[1][st[1]]=True que=[[0,st[0],0],[1,st[1],0]] while ...
{ "input": [ "8\n0 0 0 2 2 2 0 0\n1 1 1 1 0 0 0 0\n4\n1 1 2 2\n0 0 2 2\n0", "8\n0 0 0 2 2 2 0 0\n1 1 1 1 1 0 0 0\n4\n1 1 2 2\n0 0 2 2\n0", "8\n0 0 0 2 2 2 0 0\n1 1 1 1 1 0 0 0\n2\n1 1 2 2\n0 0 2 2\n0", "8\n0 0 0 2 2 2 0 0\n0 1 1 1 1 0 0 0\n2\n1 1 2 2\n0 0 2 2\n0", "8\n0 0 0 2 2 2 0 1\n1 1 1 1 0 0 ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Ninja Atsushi guards the town from the roof of the Ninja Building from early morning to late night every day. This Ninja Building is two adjacent buildings of the same floor, and Atsu...
p00392 Common-Prime Sort_10721
You are now examining a unique method to sort a sequence of numbers in increasing order. The method only allows swapping of two numbers that have a common prime factor. For example, a sequence [6, 4, 2, 3, 7] can be sorted using the following steps. Step 0: 6 4 2 3 7 (given sequence) Step 1: 2 4 6 3 7 (elements 6 and 2...
from collections import defaultdict def main(): def primes(n): is_prime = [True] * (n + 1) is_prime[0] = is_prime[1] = False for i in range(2, int(n ** (1 / 2)) + 1): if is_prime[i]: for j in range(i * i, n + 1, i): is_prime[j] = False return [i for i in range(n + 1) if is_prim...
{ "input": [ "5\n6 4 2 3 7", "7\n2 9 6 5 6 7 3", "5\n6 2 2 3 7", "5\n6 1 2 2 14", "5\n6 2 2 2 7", "5\n6 2 2 2 14", "5\n6 1 2 2 18", "5\n5 1 2 2 18", "5\n6 4 2 3 11", "7\n2 9 6 5 6 7 5", "5\n10 4 2 3 7", "5\n10 2 2 2 7", "5\n6 2 2 2 1", "5\n3 1 2 2 14", "5\n6...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are now examining a unique method to sort a sequence of numbers in increasing order. The method only allows swapping of two numbers that have a common prime factor. For example, a...
p00884 Membership Management_10728
Peter is a senior manager of Agile Change Management (ACM) Inc., where each employee is a member of one or more task groups. Since ACM is agile, task groups are often reorganized and their members frequently change, so membership management is his constant headache. Peter updates the membership information whenever an...
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools sys.setrecursionlimit(10**7) inf = 10**20 eps = 1.0 / 10**10 mod = 998244353 dd = [(0,-1),(1,0),(0,1),(-1,0)] ddn = [(0,-1),(1,-1),(1,0),(1,1),(0,1),(-1,-1),(-1,0),(-1,1)] def LI(): return [int(x) for x in sys.stdi...
{ "input": [ "2\ndevelopment:alice,bob,design,eve.\ndesign:carol,alice.\n3\none:another.\nanother:yetanother.\nyetanother:dave.\n3\nfriends:alice,bob,bestfriends,carol,fran,badcompany.\nbestfriends:eve,alice.\nbadcompany:dave,carol.\n5\na:b,c,d,e.\nb:c,d,e,f.\nc:d,e,f,g.\nd:e,f,g,h.\ne:f,g,h,i.\n4\naa:bb.\ncc:dd,...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Peter is a senior manager of Agile Change Management (ACM) Inc., where each employee is a member of one or more task groups. Since ACM is agile, task groups are often reorganized and ...
p01287 Colored Octahedra_10733
A young boy John is playing with eight triangular panels. These panels are all regular triangles of the same size, each painted in a single color; John is forming various octahedra with them. While he enjoys his playing, his father is wondering how many octahedra can be made of these panels since he is a pseudo-mathem...
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools sys.setrecursionlimit(10**7) inf = 10**20 eps = 1.0 / 10**13 mod = 10**9+7 dd = [(-1,0),(0,1),(1,0),(0,-1)] ddn = [(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int(x) for x in sys.stdin....
{ "input": [ "blue blue blue blue blue blue blue blue\nred blue blue blue blue blue blue blue\nred red blue blue blue blue blue blue", "blue blue blue blue bluf blue blue blue\nred blue blue blue blue blue blue blue\nred red blue blue blue blue blue blue", "blue blue blue blue bluf clue blue blue\nred blu...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A young boy John is playing with eight triangular panels. These panels are all regular triangles of the same size, each painted in a single color; John is forming various octahedra wi...
p01768 Shopping_10739
Problem statement 2D, who is good at cooking, is trying to make lunch. Cooking requires all N ingredients a_ {0}, a_ {1},…, a_ {N−1}. Now, 2D's refrigerator doesn't contain any ingredients, so I have to go to the supermarket to buy it. At the supermarket, you can buy the material a_ {i} for the price x_ {i} yen. 2D ...
n = int(input()) dic = {} price = [] for i in range(n): a, x = input().split() dic[a] = i price.append(int(x)) parent = [i for i in range(n)] def find(x): if parent[x] == x:return x parent[x] = find(parent[x]) return parent[x] m = int(input()) for _ in range(m): s, t = input().split() si, ti = dic[s]...
{ "input": [ "2\ntako 2\nyaki 1\n1\ntako yaki", "2\ntako 2\nyaki 1\n0\ntako yaki", "2\ntako 3\nyaji 1\n-1\noakt yaki", "2\ntako 1\nyaij 1\n-2\noajt yaki", "2\ntako 1\njiay 0\n-2\nouja yakg", "2\npaks 1\naxii -1\n-3\nokua hx`j", "2\npaks 0\naxii -1\n-1\nnkua hx`j", "2\ntako 4\nyaji 1\n0...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Problem statement 2D, who is good at cooking, is trying to make lunch. Cooking requires all N ingredients a_ {0}, a_ {1},…, a_ {N−1}. Now, 2D's refrigerator doesn't contain any ingr...
p02039 Othello_10743
problem Prepare the Othello board. The upper left is $ (1,1) $ and the lower right is $ (8,8) $. The board to be prepared here is $ (5,4) as follows. ) There is no $ black stone. ........ ........ ........ ... ox ... .... o ... ........ ........ ........ Kuroishi: x Shiraishi: o 8x8 board From this state, Black st...
q = int(input()) li = [input().split() for i in range(q)] for i in li: a, b, c, d = map(int, i) ans = 0 for j in range(a, c+1): for k in range(b, d+1): ans += 0 if j%2 == 1 and k%2 == 0 else 1 print(ans)
{ "input": [ "3\n1 1 8 8\n2 4 3 8\n8 8 8 8", "3\n1 1 8 8\n2 4 3 8\n8 3 8 8", "3\n1 1 8 8\n2 3 3 8\n8 3 8 8", "3\n1 1 8 7\n2 3 3 8\n8 3 8 8", "3\n1 1 8 7\n2 3 3 4\n8 3 8 8", "3\n1 1 8 7\n2 3 3 4\n8 3 8 2", "3\n1 1 1 8\n2 3 3 8\n8 3 8 8", "3\n1 1 8 7\n2 3 3 8\n8 3 8 3", "3\n1 1 8 7\n...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: problem Prepare the Othello board. The upper left is $ (1,1) $ and the lower right is $ (8,8) $. The board to be prepared here is $ (5,4) as follows. ) There is no $ black stone. ....
p02325 Bitonic Traveling Salesman Problem_10746
For given $N$ points in the 2D Euclidean plane, find the distance of the shortest tour that meets the following criteria: * Visit the points according to the following steps: 1. It starts from the leftmost point (starting point), goes strictly from left to right, and then visits the rightmost point (turn-around point)...
import math pts = [] line = input() N = int(line) for _ in range(0, N): line = input() x, y = list(map(int, line.split())) pts += [[x, y]] def dist(i, j): x1, y1 = pts[i] x2, y2 = pts[j] return math.sqrt((x1 - x2)**2 + (y1 - y2)**2) def btsp(): dp = [ [0] * N for _ in range(0, N)] ...
{ "input": [ "3\n0 0\n1 1\n2 0", "5\n0 0\n1 2\n2 1\n3 2\n4 0", "4\n0 1\n1 2\n2 0\n3 1", "3\n0 -1\n1 1\n2 0", "5\n-1 0\n1 2\n2 1\n3 2\n4 0", "4\n0 1\n1 2\n3 0\n3 1", "3\n0 -1\n1 2\n2 0", "4\n0 1\n1 4\n3 0\n3 1", "3\n0 -1\n1 0\n2 0", "4\n0 0\n1 4\n3 0\n3 1", "3\n0 -1\n1 0\n0 ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: For given $N$ points in the 2D Euclidean plane, find the distance of the shortest tour that meets the following criteria: * Visit the points according to the following steps: 1. It s...
p02470 Euler's Phi Function_10750
For given integer n, count the totatives of n, that is, the positive integers less than or equal to n that are relatively prime to n. Input n An integer n (1 ≤ n ≤ 1000000000). Output The number of totatives in a line. Examples Input 6 Output 2 Input 1000000 Output 400000
# https://tjkendev.github.io/procon-library/python/prime/eulers-totient-function.html # https://qiita.com/drken/items/a14e9af0ca2d857dad23#%E5%95%8F%E9%A1%8C-6-%E3%82%AA%E3%82%A4%E3%83%A9%E3%83%BC%E9%96%A2%E6%95%B0 # オイラー関数 # 1,2,...,NのうちNと互いに素であるものの個数 # Python3 program to calculate # Euler's Totient Function def eul...
{ "input": [ "1000000", "6", "1000100", "5", "1000101", "1000001", "1000011", "16", "1010011", "31", "61", "59", "106", "41", "57", "21", "2", "1100000", "3", "1000111", "1001101", "1010001", "14", "1001001", "1100011"...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: For given integer n, count the totatives of n, that is, the positive integers less than or equal to n that are relatively prime to n. Input n An integer n (1 ≤ n ≤ 1000000000)....
1019_A. Elections_10760
As you know, majority of students and teachers of Summer Informatics School live in Berland for the most part of the year. Since corruption there is quite widespread, the following story is not uncommon. Elections are coming. You know the number of voters and the number of parties — n and m respectively. For each vote...
n, m = map(int, input().split()) pc = [(0, 0) for _ in range(n)] party_votes = [0 for _ in range(m)] for i in range(n): p, c = map(int, input().split()) pc[i] = (p - 1, c) party_votes[p - 1] += 1 pc.sort(key=lambda x: x[1]) min_cost = 10**20 for votes in range(n + 1): _party_votes = party_votes[:]...
{ "input": [ "1 2\n1 100\n", "5 5\n2 100\n3 200\n4 300\n5 800\n5 900\n", "5 5\n2 100\n3 200\n4 300\n5 400\n5 900\n", "5 5\n2 5\n2 4\n2 1\n3 6\n3 7\n", "1 3000\n918 548706881\n", "1 3000\n2006 226621946\n", "10 2\n1 1\n1 1\n1 1\n1 1\n1 1\n2 1\n2 1\n2 1\n2 1\n2 1\n", "5 5\n1 3\n1 6\n5 4\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: As you know, majority of students and teachers of Summer Informatics School live in Berland for the most part of the year. Since corruption there is quite widespread, the following st...
1041_F. Ray in the tube_10764
You are given a tube which is reflective inside represented as two non-coinciding, but parallel to Ox lines. Each line has some special integer points — positions of sensors on sides of the tube. You are going to emit a laser ray in the tube. To do so, you have to choose two integer points A and B on the first and the...
n, y1 = map(int, input().split()) a = list(map(int, input().split())) m, y2 = map(int, input().split()) b = list(map(int, input().split())) a_st, b_st = dict(), dict() osn = 2 ** 30 k_a, k_b = set(), set() for el in a: try: a_st[el % osn] += 1 except KeyError: a_st[el % osn] = 1 ...
{ "input": [ "3 1\n1 5 6\n1 3\n3\n", "6 94192\n0 134217728 268435456 402653184 536870912 671088640\n6 435192\n67108864 201326592 335544320 469762048 603979776 738197504\n", "8 896753688\n106089702 120543561 161218905 447312211 764275096 764710792 813135974 841008065\n8 933908609\n20162935 104158090 483658...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a tube which is reflective inside represented as two non-coinciding, but parallel to Ox lines. Each line has some special integer points — positions of sensors on sides ...
1106_C. Lunar New Year and Number Division_10772
Lunar New Year is approaching, and Bob is struggling with his homework – a number division problem. There are n positive integers a_1, a_2, …, a_n on Bob's homework paper, where n is always an even number. Bob is asked to divide those numbers into groups, where each group must contain at least 2 numbers. Suppose the n...
n = int(input()) a = [int(s) for s in input().split(" ")] a.sort() ans = 0 for i in range(n//2): ans += (a[i]+a[n-i-1])**2 print(ans)
{ "input": [ "6\n1 1 1 2 2 2\n", "4\n8 5 2 3\n", "100\n28 27 23 6 23 11 25 20 28 15 29 23 20 2 8 24 8 9 30 8 8 1 11 7 6 17 17 27 26 30 12 22 17 22 9 25 4 26 9 26 10 30 13 4 16 12 23 19 10 22 12 20 3 16 10 4 29 11 15 4 5 7 29 16 3 1 7 16 26 14 28 1 15 19 30 28 5 22 14 28 13 12 11 30 3 4 7 10 22 8 4 10 22 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Lunar New Year is approaching, and Bob is struggling with his homework – a number division problem. There are n positive integers a_1, a_2, …, a_n on Bob's homework paper, where n is...
1133_D. Zero Quantity Maximization_10776
You are given two arrays a and b, each contains n integers. You want to create a new array c as follows: choose some real (i.e. not necessarily integer) number d, and then for every i ∈ [1, n] let c_i := d ⋅ a_i + b_i. Your goal is to maximize the number of zeroes in array c. What is the largest possible answer, if y...
from fractions import Fraction n = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) count = {} ans = 0 zeros = 0 for i in range(n): if A[i] == 0 and B[i] != 0: continue elif A[i] == 0 and B[i] == 0: zeros += 1 else: temp = Fraction(abs(B[i]), ab...
{ "input": [ "4\n0 0 0 0\n1 2 3 4\n", "5\n1 2 3 4 5\n2 4 7 11 3\n", "3\n13 37 39\n1 2 3\n", "3\n1 2 -1\n-6 -12 6\n", "5\n-2 2 1 0 2\n0 0 2 -1 -2\n", "4\n0 1 2 3\n0 0 0 3\n", "2\n0 1000000000\n0 0\n", "3\n999999999 999999998 999999999\n999999998 999999997 999999998\n", "2\n0 0\n0 0\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given two arrays a and b, each contains n integers. You want to create a new array c as follows: choose some real (i.e. not necessarily integer) number d, and then for every ...
1154_A. Restoring Three Numbers_10780
Polycarp has guessed three positive integers a, b and c. He keeps these numbers in secret, but he writes down four numbers on a board in arbitrary order — their pairwise sums (three numbers) and sum of all three numbers (one number). So, there are four numbers on a board in random order: a+b, a+c, b+c and a+b+c. You h...
x,y,z,w = (int(i) for i in input().split()) s = (x+y+z+w)//3 for i in x,y,z,w: temp = s - i if s - i > 0: print(s-i, end=' ')
{ "input": [ "40 40 40 60\n", "201 101 101 200\n", "3 6 5 4\n", "500000000 500000001 999999999 1000000000\n", "3 999999990 999999991 999999992\n", "600000000 900000000 500000000 1000000000\n", "1000000000 666666667 666666667 666666666\n", "10101000 101000 10001000 10100000\n", "2 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Polycarp has guessed three positive integers a, b and c. He keeps these numbers in secret, but he writes down four numbers on a board in arbitrary order — their pairwise sums (three n...
1175_F. The Number of Subpermutations_10783
You have an array a_1, a_2, ..., a_n. Let's call some subarray a_l, a_{l + 1}, ... , a_r of this array a subpermutation if it contains all integers from 1 to r-l+1 exactly once. For example, array a = [2, 2, 1, 3, 2, 3, 1] contains 6 subarrays which are subpermutations: [a_2 ... a_3], [a_2 ... a_4], [a_3 ... a_3], [a...
#import sys import math #input=sys.stdin.readline #sys.setrecursionlimit(1000000) mod=int(1000000007) i=lambda :map(int,input().split()) n=int(input()) a=[int(x) for x in input().split()] t=[[0]*21 for i in range(300005)] for i in range(n): t[i][0]=a[i] def build(n): for j in range(1,20): for i in ra...
{ "input": [ "8\n2 4 1 3 4 2 1 2\n", "5\n1 1 2 1 2\n", "98\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You have an array a_1, a_2, ..., a_n. Let's call some subarray a_l, a_{l + 1}, ... , a_r of this array a subpermutation if it contains all integers from 1 to r-l+1 exactly once. For...
1234_A. Equalize Prices Again_10789
You are both a shop keeper and a shop assistant at a small nearby shop. You have n goods, the i-th good costs a_i coins. You got tired of remembering the price of each product when customers ask for it, thus you decided to simplify your life. More precisely you decided to set the same price for all n goods you have. ...
import math for _ in range(int(input())): k=int(input()) l=list(map(int,input().split())) k=sum(l)/k print(math.ceil(k))
{ "input": [ "3\n5\n1 2 3 4 5\n3\n1 2 2\n4\n1 1 1 1\n", "3\n5\n1 2 3 4 5\n3\n1 2 3\n2\n777 778\n", "1\n2\n777 778\n", "1\n2\n777 1\n", "1\n1\n2441139\n", "3\n5\n1 2 3 4 5\n3\n1 4 3\n2\n777 778\n", "1\n2\n777 144\n", "1\n2\n386 1\n", "3\n5\n1 2 3 4 5\n3\n1 2 2\n4\n2 1 1 1\n", "1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are both a shop keeper and a shop assistant at a small nearby shop. You have n goods, the i-th good costs a_i coins. You got tired of remembering the price of each product when c...
1296_E1. String Coloring (easy version)_10795
This is an easy version of the problem. The actual problems are different, but the easy version is almost a subtask of the hard version. Note that the constraints and the output format are different. You are given a string s consisting of n lowercase Latin letters. You have to color all its characters one of the two ...
# ------------------- fast io -------------------- import os import sys from io import BytesIO, IOBase BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode or "r" not in file.mode...
{ "input": [ "7\nabcdedc\n", "9\nabacbecfd\n", "5\nabcde\n", "8\naaabbcbb\n", "6\nqdlrhw\n", "500\nxwxpgalijfbdbdmluuaubobxztpkfnuparzxczfzchinxdtaevbepdxlouzfzaizkinuaufhckjvydmgnkuaneqohcqocfrsbmmohgpoacnqlgspppfogdkkbrkrhdpdlnknjyeccbqssqtaqmyamtkedlhpbjmchfnmwhxepzfrfmlrxrirbvvlryzmulxqjlt...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: This is an easy version of the problem. The actual problems are different, but the easy version is almost a subtask of the hard version. Note that the constraints and the output forma...
131_E. Yet Another Task with Queens_10799
A queen is the strongest chess piece. In modern chess the queen can move any number of squares in any horizontal, vertical or diagonal direction (considering that there're no other pieces on its way). The queen combines the options given to the rook and the bishop. There are m queens on a square n × n chessboard. You ...
#Code by Sounak, IIESTS #------------------------------warmup---------------------------- import os import sys import math from io import BytesIO, IOBase from fractions import Fraction import collections from itertools import permutations from collections import defaultdict from collections import deque import threadi...
{ "input": [ "10 3\n1 1\n1 2\n1 3\n", "8 4\n4 3\n4 8\n6 5\n1 6\n", "10 10\n6 5\n3 5\n3 4\n6 10\n3 10\n4 6\n6 2\n7 5\n1 8\n2 2\n", "10 20\n6 10\n3 10\n10 4\n5 3\n9 4\n10 1\n10 3\n10 7\n8 5\n7 2\n4 7\n5 1\n2 9\n5 5\n6 6\n9 8\n2 10\n9 10\n1 4\n7 4\n", "2 1\n1 1\n", "10 4\n5 6\n4 8\n8 4\n7 4\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A queen is the strongest chess piece. In modern chess the queen can move any number of squares in any horizontal, vertical or diagonal direction (considering that there're no other pi...
1339_B. Sorted Adjacent Differences_10803
You have array of n numbers a_{1}, a_{2}, …, a_{n}. Rearrange these numbers to satisfy |a_{1} - a_{2}| ≤ |a_{2} - a_{3}| ≤ … ≤ |a_{n-1} - a_{n}|, where |x| denotes absolute value of x. It's always possible to find such rearrangement. Note that all numbers in a are not necessarily different. In other words, some numb...
for _ in range(int(input())): n = int(input()) ls = sorted(list(map(int, input().split()))) mid = n // 2 if n % 2 == 0: mid -= 1 i = mid - 1 turn = True j = mid + 1 ar = [] ar.append(ls[mid]) while i >= 0 or j < n: if turn and j < n: ar.append(ls[j]) j += 1 elif not turn and i >= 0: ar.append(l...
{ "input": [ "2\n6\n5 -2 4 8 6 5\n4\n8 1 4 2\n", "1\n29\n31 16383 15 127 255 3 4095 536870911 7 63 262143 2097151 1 16777215 134217727 524287 511 8388607 67108863 1023 8191 2047 32767 33554431 268435455 65535 131071 1048575 4194303\n", "1\n29\n31 16383 15 127 255 3 4095 536870911 7 63 318805 2097151 1 167...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You have array of n numbers a_{1}, a_{2}, …, a_{n}. Rearrange these numbers to satisfy |a_{1} - a_{2}| ≤ |a_{2} - a_{3}| ≤ … ≤ |a_{n-1} - a_{n}|, where |x| denotes absolute value of...
1360_F. Spy-string_10807
You are given n strings a_1, a_2, …, a_n: all of them have the same length m. The strings consist of lowercase English letters. Find any string s of length m such that each of the given n strings differs from s in at most one position. Formally, for each given string a_i, there is no more than one position j such that...
# cook your dish here #code import math import collections from sys import stdin,stdout,setrecursionlimit from bisect import bisect_left as bsl from bisect import bisect_right as bsr import heapq as hq setrecursionlimit(2**20) def strcmp(s1,s2,m): cnt = 0 for i in range(m): if(s1[i]!=s2[i]): ...
{ "input": [ "5\n2 4\nabac\nzbab\n2 4\naaaa\nbbbb\n3 3\nbaa\naaa\naab\n2 2\nab\nbb\n3 1\na\nb\nc\n", "5\n2 4\nabac\nzbab\n2 4\naaaa\nbbbb\n3 3\nbaa\naaa\naab\n2 2\nab\nbb\n3 1\na\nb\nc\n", "5\n2 4\nabac\nbabz\n2 4\naaaa\nbbbb\n3 3\nbaa\naaa\naab\n2 2\nab\nbb\n3 1\na\nb\nc\n", "5\n2 4\nabac\nbabz\n2 4\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given n strings a_1, a_2, …, a_n: all of them have the same length m. The strings consist of lowercase English letters. Find any string s of length m such that each of the gi...
1380_G. Circular Dungeon_10810
You are creating a level for a video game. The level consists of n rooms placed in a circle. The rooms are numbered 1 through n. Each room contains exactly one exit: completing the j-th room allows you to go the (j+1)-th room (and completing the n-th room allows you to go the 1-st room). You are given the description ...
import sys sys.setrecursionlimit(10 ** 5) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(ro...
{ "input": [ "2\n1 2\n", "8\n10 4 3 6 5 10 7 5\n", "50\n499 780 837 984 481 526 944 482 862 136 265 605 5 631 974 967 574 293 969 467 573 845 102 224 17 873 648 120 694 996 244 313 404 129 899 583 541 314 525 496 443 857 297 78 575 2 430 137 387 319\n", "10\n20 1 15 17 11 2 15 3 16 3\n", "50\n499 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are creating a level for a video game. The level consists of n rooms placed in a circle. The rooms are numbered 1 through n. Each room contains exactly one exit: completing the j-...
1424_G. Years_10815
During one of the space missions, humans have found an evidence of previous life at one of the planets. They were lucky enough to find a book with birth and death years of each individual that had been living at this planet. What's interesting is that these years are in the range (1, 10^9)! Therefore, the planet was na...
dct = {} for i in range(int(input())): a,b = map(int,input().split()) dct[a] = dct.get(a,0)+1 dct[b] = dct.get(b,0)-1 cnt = curr = y = 0 for i in sorted(dct.keys()): curr += dct[i] if curr > cnt : cnt = curr y = i print(y,cnt)
{ "input": [ "3\n1 5\n2 4\n5 6\n", "4\n3 4\n4 5\n4 6\n8 10\n", "1\n1 2\n", "1\n1 1000000000\n", "1\n125 126\n", "3\n1 2\n2 4\n2 4\n", "1\n1 3\n", "1\n0 1000000000\n", "3\n1 2\n2 4\n0 4\n", "3\n0 2\n2 4\n0 4\n", "4\n3 4\n4 8\n4 6\n8 10\n", "4\n3 8\n4 8\n4 9\n8 10\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: During one of the space missions, humans have found an evidence of previous life at one of the planets. They were lucky enough to find a book with birth and death years of each indivi...
1445_C. Division_10819
Oleg's favorite subjects are History and Math, and his favorite branch of mathematics is division. To improve his division skills, Oleg came up with t pairs of integers p_i and q_i and for each pair decided to find the greatest integer x_i, such that: * p_i is divisible by x_i; * x_i is not divisible by q_i. ...
""" #If FastIO not needed, used this and don't forget to strip #import sys, math #input = sys.stdin.readline """ import os import sys from io import BytesIO, IOBase import heapq as h from bisect import bisect_left, bisect_right from types import GeneratorType BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 ...
{ "input": [ "3\n10 4\n12 6\n179 822\n", "1\n42034266112 80174\n", "10\n246857872446986130 713202678\n857754240051582063 933416507\n873935277189052612 530795521\n557307185726829409 746530097\n173788420792057536 769449696\n101626841876448103 132345797\n598448092106640578 746411314\n733629261048200000 36171...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Oleg's favorite subjects are History and Math, and his favorite branch of mathematics is division. To improve his division skills, Oleg came up with t pairs of integers p_i and q_i a...
146_C. Lucky Conversion_10823
Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya has two strings a and b of the same length n. The strings consist only of lucky digits. Pety...
a=input() b=input() da={'4':0,'7':0} db={'4':0,'7':0} for i in a: da[i]+=1 for i in b: db[i]+=1 dif=0 for i in range(len(a)): if(a[i]!=b[i]): dif+=1 ans=0 if(da==db): ans=dif//2 else: x=abs(da['4']-db['4']) ans+=x dif-=x ans+=(dif//2) print(ans)
{ "input": [ "47\n74\n", "774\n744\n", "777\n444\n", "44447777447744444777777747477444777444447744444\n47444747774774744474747744447744477747777777447\n", "74747474\n77777777\n", "77747\n47474\n", "474777477774444\n774747777774477\n", "47744447444\n74477447744\n", "4447744774744774...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744...
1519_B. The Cake Is a Lie_10828
There is a n × m grid. You are standing at cell (1, 1) and your goal is to finish at cell (n, m). You can move to the neighboring cells to the right or down. In other words, suppose you are standing at cell (x, y). You can: * move right to the cell (x, y + 1) — it costs x burles; * move down to the cell (x + 1,...
t = int(input()) while t > 0: n, m, k = map(int, input().split()) if k == n * m - 1: print('Yes') else: print('No') t -= 1
{ "input": [ "6\n1 1 0\n2 2 2\n2 2 3\n2 2 4\n1 4 3\n100 100 10000\n", "9\n1 1 0\n2 2 2\n2 2 3\n2 2 4\n1 4 3\n100 100 10000\n3 3 7\n3 3 9\n2 4 8\n", "9\n1 1 0\n2 2 2\n2 2 3\n2 2 4\n1 4 3\n100 100 11000\n3 3 7\n3 3 9\n2 4 8\n", "9\n1 1 0\n2 2 4\n2 2 3\n2 2 -1\n1 1 3\n100 100 11000\n3 3 7\n3 1 9\n2 3 8\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There is a n × m grid. You are standing at cell (1, 1) and your goal is to finish at cell (n, m). You can move to the neighboring cells to the right or down. In other words, suppose ...
1546_B. AquaMoon and Stolen String_10832
AquaMoon had n strings of length m each. n is an odd number. When AquaMoon was gone, Cirno tried to pair these n strings together. After making (n-1)/(2) pairs, she found out that there was exactly one string without the pair! In her rage, she disrupted each pair of strings. For each pair, she selected some positions...
import sys input = sys.stdin.readline def solve(): n, m = map(int, input().split()) original = [input() for _ in range(n)] modified = [input() for _ in range(n-1)] stolen_chars = [] for j in range(m): chars_available = 0 for i in range(n): chars_available += ord(origina...
{ "input": [ "3\n3 5\naaaaa\nbbbbb\nccccc\naaaaa\nbbbbb\n3 4\naaaa\nbbbb\ncccc\naabb\nbbaa\n5 6\nabcdef\nuuuuuu\nkekeke\nekekek\nxyzklm\nxbcklf\neueueu\nayzdem\nukukuk\n", "3\n3 5\naaaaa\nbbbbb\nccccc\n1 2 5 1 2 3 4 5\n2 1 3\n3 4\naaaa\nbbbb\ncccc\n1 2 2 1 2\n2 1 3\n5 6\nabcdef\nuuuuuu\nkekeke\nekekek\nxyzklm...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: AquaMoon had n strings of length m each. n is an odd number. When AquaMoon was gone, Cirno tried to pair these n strings together. After making (n-1)/(2) pairs, she found out that th...
266_B. Queue at the School_10846
During the break the schoolchildren, boys and girls, formed a queue of n people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling awkward for standing in front of the girls in the queue and they started letting the girls move forward each...
n, t = map(int, input().split()) a = list(input()) for i in range(t): j = 0 while j < n: while j < n and a[j] == 'G': j += 1 while j < n and a[j] == 'B': j += 1 if j < n: a[j - 1], a[j] = 'G', 'B' j += 1 for i in a: print(i, ...
{ "input": [ "5 1\nBGGBG\n", "5 2\nBGGBG\n", "4 1\nGGGB\n", "30 50\nBGGBBGGGGGGGGBBGGGBBGGBBBGBBGG\n", "10 3\nBBGBBBBBBG\n", "1 1\nG\n", "46 3\nGGBBGGGGBBGBGBBBBBGGGBGGGBBGGGBBBGGBGGBBBGBGBB\n", "50 6\nBGGBBBBGGBBBBBBGGBGBGBBBBGBBBBBBGBBBBBBBBBBBBBBBBB\n", "1 50\nG\n", "2 2\nBG...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: During the break the schoolchildren, boys and girls, formed a queue of n people in the canteen. Initially the children stood in the order they entered the canteen. However, after a wh...
28_B. pSort_10850
One day n cells of some array decided to play the following game. Initially each cell contains a number which is equal to it's ordinal number (starting from 1). Also each cell determined it's favourite number. On it's move i-th cell can exchange it's value with the value of some other j-th cell, if |i - j| = di, where ...
n=int(input()) a=list(map(int,input().split())) b=list(map(int,input().split())) c=[[] for i in range(n)] for i in range(n): if i-b[i]>=0: c[i].append(i-b[i]) c[i-b[i]].append(i) if i+b[i]<n: c[i].append(i+b[i]) c[i+b[i]].append(i) v=[1]*n def dfs(u): global v,c v[u]=0 ...
{ "input": [ "7\n4 3 5 1 2 7 6\n4 6 6 1 6 6 1\n", "5\n5 4 3 2 1\n1 1 1 1 1\n", "7\n4 2 5 1 3 7 6\n4 6 6 1 6 6 1\n", "80\n39 2 33 16 36 27 65 62 40 17 44 6 13 10 43 31 66 64 63 20 59 72 9 24 12 29 77 47 71 79 50 32 55 4 35 60 7 69 14 54 3 42 15 11 75 22 28 30 49 18 46 56 51 68 5 38 25 58 73 26 61 21 37...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: One day n cells of some array decided to play the following game. Initially each cell contains a number which is equal to it's ordinal number (starting from 1). Also each cell determi...