- 博客(3)
- 收藏
- 关注
原创 P1012 [NOIP1998 提高组] 拼数 (洛谷)
from functools import cmp_to_keydef MyCmp(x,y): if(x+y<y+x): return 1 else: return -1n=int(input())s=input().split()s=sorted(s,key=cmp_to_key(MyCmp))for temp in s: print(temp,end="")print()
2022-02-24 17:55:44 241
原创 求逆元(c++实现)
#include <iostream>using namespace std;int main(){ int x1,x2,x3; int y1,y2,y3; int q; int t1,t2,t3; cout<<"请输入整数a,以及模m;并且(a,m)=1"<<endl; cin>>x3>>y3; x1=1;x2=0; y1=0;y2=1; int t; int l; l=x3; int k; ...
2021-05-28 21:49:36 1622
原创 非抢占式多级反馈队列调度算法 C++实现
#include <bits/stdc++.h>using namespace std;int a[100],s[100],y[100],A[100],n;//a[]代表来的时间,s[]代表剩余服务时间 ,y[]代表服务时间 ,n代表进程总数bool check(){ for(int k=1;k<=n;k++) if(s[k]>0) return false; return true;}int main(){ cou...
2021-05-27 19:53:44 916 5
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人