算法
RememberMePlease
这个作者很懒,什么都没留下…
展开
-
python版本的N皇后算法
# /uer/bin/env python# *_*coding=utf-8 *_*x=[0 for i in range(1000)] #存放结果的列表sum1=0def Place(t): global x global n for i in range(1,t): if (abs(x[i]-x[t])==abs(i-t)) |(x[i]==x[t]): return False ret...原创 2018-03-26 18:45:11 · 938 阅读 · 0 评论 -
python版计蒜客法师康的工人
#!/usr/bin/enc pythonmax_list=[]N=int(input())for i in range(0,N): max_list.append([int(x) for x in input().split(" ")])#按照开始时间从小到大排序max_list=sorted(max_list,key=lambda x:x[0],reverse=False)# print(ma...原创 2018-03-26 18:48:33 · 242 阅读 · 0 评论 -
python版最大子段和与最小子段和
n=int(input())table=[int(x) for x in input().split(" ")]exc=0m=0print(table)for i in table: if exc >0: exc=exc+i else: exc=i if m<exc: m=excprint(m)当然,最小字段和只需将exc>0 变为exc<0即可...原创 2018-03-31 13:46:28 · 1796 阅读 · 0 评论