摘要:
https://codeforc.es/contest/1481/problem/C 题意:n块栅栏,告诉你原先的颜色和期望得到的颜色,并告诉你每位油漆工必须刷上的一个颜色,问你安排每位油漆工刷哪块栅栏能使栅栏变成期望的颜色. 思路核心:浪费,怼着一块板(最后一个油漆工要刷的板)拼命刷那些不需要的颜 阅读全文
摘要:
如题啦,单个感知机分类 结果展示: 代码: import numpy as np import pandas as pd import matplotlib.pyplot as plt import random def sgn(x): if x>=0: return 1; else: return 阅读全文
摘要:
Rock, Paper, Scissors 链接 https://codeforc.es/contest/1426/problem/E 题意两个人玩剪子包袱锤,告诉你两个人分别出剪刀石头布的轮数,你安排顺序,求第一个人的最小胜场和最大胜场 求最大胜场 直接贪心 求最小胜场就比较复杂了: 求最小胜场分 阅读全文
摘要:
题目链接 https://atcoder.jp/contests/agc029/tasks/agc029_b 这题题意为n个正数要求两两搭配形成"二进制数"(2^n这样的数,例如2 4 8 16...),数字可以不用完(一般想用也用不完),且每个数字只能用一次. 例: 3 11 14 5 13最多组 阅读全文
摘要:
This problem's meaning is that the winner is the lowest sum places of the two round.And now you konw your two places.Please tell me the highest place 阅读全文