Now I give my proof.
notice that $$$\sin(x)\sin(y)=\frac{1}{2}(cos(x-y)-cos(x+y))$$$
inverse $$$\sin(x)\sin(y)=\frac{1}{2}(cos(x-y)-cos(x+y))$$$ to be $$$\cos(a)-\cos(b)=-2\sin(\frac{a+b}2)\sin(\frac{a-b}2)$$$
maybe a nice idea! What do u think?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 156 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Now I give my proof.
notice that $$$\sin(x)\sin(y)=\frac{1}{2}(cos(x-y)-cos(x+y))$$$
inverse $$$\sin(x)\sin(y)=\frac{1}{2}(cos(x-y)-cos(x+y))$$$ to be $$$\cos(a)-\cos(b)=-2\sin(\frac{a+b}2)\sin(\frac{a-b}2)$$$
maybe a nice idea! What do u think?
have a look at this code of 1565E which got runtime error and idk why, so I have to write again in C++ during the competition.
I'll appreciate if somebudy could do me a favor :)
import io
import os
input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline
def rdvec():
return [int(i) for i in input().split()]
def rd():
return int(input())
T=int(input())
def solve():
n=rd()
g=[[] for i in range(n)]
U=[0]*n
for i in range(n-1):
x,y=rdvec()
x-=1
y-=1
g[x].append(y)
g[y].append(x)
U[x]+=1
U[y]+=1
def dfs(x,fa,s):
if s%2==0:
U[x]=-U[x]
for y in g[x]:
if y!=fa:
dfs(y,x,s+1)
dfs(0,0,0)
print(*U)
for o in range(T):
solve()
Название |
---|