前言
这周居然考两道数学,反正是我的弱项。然后第一题考试的时候zz了竟然忘了怎么二分
成绩
只放Rank1∼10Rank\ 1\sim10Rank 1∼10
RankRankRank | PersonPersonPerson | ScoreScoreScore | AAA | BBB | CCC |
---|---|---|---|---|---|
111 | 2015hjw2015hjw2015hjw | 210210210 | 100100100 | 707070 | 404040 |
222 | 2017myself2017myself2017myself | 165165165 | 202020 | 606060 | 858585 |
333 | 2017xjq2017xjq2017xjq | 160160160 | 000 | 606060 | 100100100 |
444 | 2015yjy2015yjy2015yjy | 145145145 | 100100100 | 101010 | 353535 |
555 | 2015lzx2015lzx2015lzx | 100100100 | 100100100 | 000 | 000 |
666 | 2015gjh2015gjh2015gjh | 100100100 | 000 | 606060 | 404040 |
777 | 2017lw2017lw2017lw | 555555 | 101010 | 303030 | 151515 |
888 | 2015zzy2015zzy2015zzy | 555555 | 000 | 303030 | 252525 |
999 | 2015trx2015trx2015trx | 454545 | 000 | 303030 | 151515 |
101010 | 2017lrz2017lrz2017lrz | 454545 | 000 | 101010 | 353535 |
正题
T1:nssl1155−T1:nssl1155-T1:nssl1155−遨游【二分答案,SPFA,SPFA,SPFA】
博客链接:https://blog.csdn.net/Mr_wuyongcong/article/details/82812117
T2:nssl1156−T2:nssl1156-T2:nssl1156−今天你AKAKAK了吗???【康托展开,,,高精度,,,二分答案,,,树状数组】
博客链接:https://blog.csdn.net/Mr_wuyongcong/article/details/82813059
T3:nssl1157−T3:nssl1157-T3:nssl1157−简单数学题【约数,,,换元法】
博客链接:https://blog.csdn.net/Mr_wuyongcong/article/details/82813365
someofcodesome\ of\ codesome of code
T1-70分代码
#include<cstdio>
#include<algorithm>
#include<queue>
#define M 100010
#define N 50010
using namespace std;
struct line{int from,to;double w;int next;
}a[M*2];
struct node{double l,r;
}f[N];
queue<int> q;
int n,m,x,y,w,tot,ans;
int ls[N],mark[N],h[N],s,t;
bool v[N];
void addl(int x,int y,double w)
{a[++tot]=(line){x,y,w,ls[x]};ls[x]=tot;a[++tot]=(line){y,x,w,ls[y]};ls[y]=tot;
}
void spfa()
{q.push(s);v[s]=true;for(int i=1;i<=ans;i++)f[i]=(node){0,2147483647};f[s]=(node){2147483647,0};while(!q.empty()){int x=q.front();q.pop();for(int i=ls[x];i;i=a[i].next){int y=a[i].to;if(min(f[x].l,a[i].w)>f[y].l||(min(f[x].l,a[i].w)==f[y].l&&max(f[x].r,a[i].w)<f[y].r)){f[y]=(node){min(f[x].l,a[i].w),max(f[x].r,a[i].w)};if(!v[y]){v[y]=true;q.push(y);}}}v[x]=false;}
}
int main()
{scanf("%d%d",&n,&m);for(int i=1;i<=m;i++){scanf("%d%d%d",&x,&y,&w);addl(x,y,w);}for(int i=1;i<=n;i++){scanf("%d",&t);ans+=t;for(int j=1;j<=t;j++){scanf("%d",&x);mark[x]=i;}}for(int i=1;i<=n;i++)scanf("%d",&h[i]);for(int i=1;i<=tot;i++){x=mark[a[i].from];y=mark[a[i].to];a[i].w*=(h[x]+h[y])/2.0/100.0;}scanf("%d%d",&s,&t);spfa();double R=f[t].r;if(R-(int)R>0) R++;printf("%d %d\n",(int)f[t].l,(int)R);
}
T2-60分代码
#include<cstdio>
using namespace std;
long long n,k,tot,nI,a[19];
int main()
{scanf("%lld%lld",&n,&k);nI=1;for(int i=1;i<n;i++)nI=nI*i;for(int i=1;i<=n;i++)a[i]=i;tot=n;for(int i=1;i<=n;i++){int wz=(k-1)/nI+1;printf("%lld ",a[wz]);if(i==n) break;for(int j=wz;j<tot;j++)a[j]=a[j+1];k=(k-1)%nI+1;tot--;nI/=tot;}
}
尾声
明天见