摘要:
A. Round Down the Price AC代码 #include <bits/stdc++.h> #define IOS \ std::ios::sync_with_stdio(false); \ std::cin.tie(0); \ std::cout.tie(0); using PII 阅读全文
摘要:
A. The Third Three Number Problem 题意 给你一个整数 $n$ ,构造满足等式 $(a \bigoplus b)+(b \bigoplus c)+(a \bigoplus c)=n$ 的三个整数 $a,b,c$ ,或说明这样的整数并不存在。 题目分析 根据样例猜了下如 阅读全文
摘要:
D. Optimal Partition #include <bits/stdc++.h> #define IOS \ std::ios::sync_with_stdio(false); \ std::cin.tie(0); \ std::cout.tie(0); using ll = long l 阅读全文