摘要:
设 $A, B$ 为任意的两个集合, 称 $$ {{a, b} \mid a \in A \wedge b \in B} $$ 为 $A$ 与 $B$ 的无序积,记作 $A & B$. 为方便起见, 将无序积中的无序对 ${a, b}$, 记为 $(a, b)$, 并且允许 $a=b$. 需要指出的 阅读全文
2023年3月13日
2023年3月6日
摘要:
https://codeforces.com/problemset/problem/1787/C This is the reason why the problem was named as Remove the Bracket. \begin{aligned} \text{Product} &= 阅读全文
摘要:
https://codeforces.com/contest/1741/problem/E Let's introduce the dynamics. ${\displaystyle dp[i]=true}$ if on the prefix ii the answer is Yes. Then i 阅读全文
2023年2月26日
摘要:
振动 ${\displaystyle y=A\cos(\omega t+\phi) =A\cos2\pi(\frac{t}{T}\pm\frac{x}{u})=A\cos(\omega t\pm\frac{2\pi}{\lambda}x)}$ 弹簧振子的运动周期: ${\displaystyle T 阅读全文
摘要:
量子力学 物理学家在量子领域的贡献: 普朗克:提出能量子假设,解释黑体辐射 爱因斯坦:解释了光电效应 波尔:氢原子理论 海森堡:不确定关系 薛定谔:薛定谔方程 泡利:泡利不相容原理 戴维孙——革末:发现电子的波动性。 施特恩-格拉赫实验:电子自旋角动量(自旋磁矩)量子化 or 电子具有自旋角动量 光 阅读全文
摘要:
波动光学 ${\displaystyle 光程=nx=\frac{cx}{u}=c\Delta t}$ ${\displaystyle 光程差=\delta=L_2-L_1=\frac{2\pi}{\lambda}(r_2-r_1)}$ Attention:光在不同介质中的 $频率f$ 不改变!! 阅读全文
摘要:
几何光学 基本定律 折射定律: ${\displaystyle n_1\sin i=n_2 \sin \gamma}$ 反射定律可当作折射定律在$n_1=-n_2$下的特例,得$i =-γ$ ,负号表示反射线和入射线分居法线两侧. ${\displaystyle当入射角(临界角) i=i_C=\ar 阅读全文
2022年12月3日
摘要:
1 #include <bits/stdc++.h> 2 using namespace std; 3 4 #define int long long 5 6 #ifdef LOCAL 7 #include "algo/dbg.h" 8 #else 9 #define debug(...) 42 1 阅读全文
2022年10月9日
摘要:
Bob was in trouble.He rubbed the magic ring on his finger, and you came out of the ground. You are given an undirected graph GG which contains nn vert 阅读全文
2022年10月6日
摘要:
void solve() { int n; cin >> n; int odd = 0, even = 0; for (int i = 0; i < n; i++) { int a; cin >> a; if (a & 1) odd++; else even++; } int t = odd & 3 阅读全文