2014 Multi-University Training Contest 8小记

2024-09-09 08:08

本文主要是介绍2014 Multi-University Training Contest 8小记,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1002 计算几何

最大的速度才可能拥有无限的面积。

最大的速度的点 求凸包, 凸包上的点( 注意不是端点 ) 才拥有无限的面积

注意 :  凸包上如果有重点则不满足。

另外最大的速度为0也不行的。

int  cmp(double x){if(fabs(x) < 1e-8) return 0 ;if(x > 0) return 1 ;return -1  ;
}struct point{int  x ,  y  ;point(){}point(int _x , int _y):x(_x) , y(_y){}friend bool operator == (const point &a , const point &b){return cmp(a.x - b.x) == 0 && cmp(a.y - b.y) == 0 ;}friend double operator ^ (const point &a , const point &b){return a.x * b.y - a.y * b.x ;}point operator - (point o){return  point(x - o.x , y - o.y) ;}
};struct Poly{vector<point> p ;Poly(){}Poly(int s = 0){p.resize(s) ;}
} ;bool  cmpless(const  point &a , const point &b){return   cmp(a.x - b.x) < 0|| cmp(a.x - b.x == 0) && cmp(a.y - b.y) < 0 ;
}Poly convex_hull(vector<point> a){Poly src(2 * a.size() + 5)  ;sort(a.begin() , a.end() , cmpless) ;a.erase(unique(a.begin() , a.end()) , a.end())  ;int m = 0 ;for(int i = 0 ; i < a.size() ; i++){while(m > 1 && cmp( (src.p[m-1] - src.p[m-2]) ^  (a[i] - src.p[m-2]) ) <= 0)m-- ;src.p[m++] = a[i] ;}int k = m ;for(int i = a.size() - 2 ; i >= 0 ; i--){while(m > k && cmp( (src.p[m-1] - src.p[m-2]) ^ (a[i] - src.p[m-2])) <= 0)m-- ;src.p[m++] = a[i] ;}src.p.resize(m) ;if(a.size() > 1) src.p.resize(m-1) ;return src ;
}struct  node{point a ;int   v ;int   id ;int   recover ;
}man[508] ;int   answer[508] ;int   main(){int n , T = 1 , mxv  , i  , j  ;while(cin>>n && n){mxv = -1 ;for(i = 0 ; i < n ; i++){scanf("%d%d%d" , &man[i].a.x , &man[i].a.y , &man[i].v) ;man[i].id = i ;mxv = max(mxv , man[i].v) ;}printf("Case #%d: " , T++) ;if(mxv == 0){for(i = 0 ; i < n ; i++)  putchar('0') ;puts("") ;continue  ;}for(i = 0 ; i < n ; i++)  man[i].recover = 0 ;for(i = 0 ; i < n ; i++){if(man[i].v != mxv) continue  ;for(j = i+1 ; j < n ; j++){if(man[i].v == man[j].v && man[i].a == man[j].a){man[i].recover = man[j].recover = 1 ;}}}vector<node> Man ; vector<point> lis ; for(i = 0 ; i < n ; i++){if(man[i].v == mxv){Man.push_back(man[i]) ;lis.push_back(man[i].a) ;}}Poly po = convex_hull(lis) ;memset(answer , 0 , sizeof(answer)) ;for(i = 0 ; i < Man.size() ; i++){node now = Man[i] ;if(now.recover == 1) continue ;for(j = 0 ; j < po.p.size() ; j++){if(cmp( (now.a-po.p[j]) ^ (now.a - po.p[(j+1)%po.p.size()] ) ) == 0){answer[now.id] = 1 ;break ;}}}for(i = 0 ; i < n ; i++)  printf("%d" , answer[i]) ;puts("") ;}return  0  ;
}

1006  贪心

typedef   long  long  LL ;LL h , a , b , k ;int   ok(){if(h - a < 1)  return 1 ;if(h - k * a  +  (k-1) * b < 1 )  return 1  ;if(- k * a  + (k+1) * b  < 0)  return 1 ;return  0 ;
}int   main(){int T = 1 ;while(cin>>h>>a>>b>>k){if(h == 0 && a==0 && b==0 && k==0 )  break  ;printf("Case #%d: " , T++)  ;if(ok())  puts("YES") ;else      puts("NO")  ;}return  0 ;
}

1008 找规律

typedef   long  long  LL ;LL    a , k ;int   main(){LL  i  , A ,  n ,  t  , pt ,  T = 1 ;while(cin>>a>>k){if(a == 0 && k == 0)  break  ; A = a ;pt = -1 ;for(i = 1 ; i <= k ; i++){if(A % i == 0) t =  A / i  ;else {A = ((A / i) + 1 ) * i ;t =  A / i  ;}if(t == pt) break ;pt = t ;}printf("Case #%d: " , T++) ;cout<< t * k << endl ;}return  0 ;
}






这篇关于2014 Multi-University Training Contest 8小记的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1150612

相关文章

ZOJ Monthly, August 2014小记

最近太忙太忙,只能抽时间写几道简单题。不过我倒是明白要想水平提高不看题解是最好的了。 A  我只能死找规律了,无法证明 int a[50002][2] ;vector< vector<int> > gmax , gmin ;int main(){int n , i , j , k , cmax , cmin ;while(cin>>n){/* g

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m

2014 Multi-University Training Contest 7小记

1003   数学 , 先暴力再解方程。 在b进制下是个2 , 3 位数的 大概是10000进制以上 。这部分解方程 2-10000 直接暴力 typedef long long LL ;LL n ;int ok(int b){LL m = n ;int c ;while(m){c = m % b ;if(c == 3 || c == 4 || c == 5 ||

2014 Multi-University Training Contest 6小记

1003  贪心 对于111...10....000 这样的序列,  a 为1的个数,b为0的个数,易得当 x= a / (a + b) 时 f最小。 讲串分成若干段  1..10..0   ,  1..10..0 ,  要满足x非递减 。  对于 xi > xi+1  这样的合并 即可。 const int maxn = 100008 ;struct Node{int

AtCoder Beginner Contest 370 Solution

A void solve() {int a, b;qr(a, b);if(a + b != 1) cout << "Invalid\n";else Yes(a);} B 模拟 void solve() {qr(n);int x = 1;FOR(i, n) FOR(j, i) qr(a[i][j]);FOR(i, n) x = x >= i ? a[x][i]: a[i][x];pr2(

Post-Training有多重要?一文带你了解全部细节

1. 简介 随着LLM学界和工业界日新月异的发展,不仅预训练所用的算力和数据正在疯狂内卷,后训练(post-training)的对齐和微调方法也在不断更新。InstructGPT、WebGPT等较早发布的模型使用标准RLHF方法,其中的数据管理风格和规模似乎已经过时。近来,Meta、谷歌和英伟达等AI巨头纷纷发布开源模型,附带发布详尽的论文或报告,包括Llama 3.1、Nemotron 340

2014年暑假培训 - 数论

A银河上的星星 /**************************************************************     Problem: 1014     User: DoubleQ     Language: C++     Result: Accepted     Time:190 ms     Memor

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi

2014暑假集训搜索专题

A - 漫步校园 Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit Status Description LL最近沉迷于AC不能自拔,每天寝室、机房两点一线。由于长时间坐在电脑边,缺乏运动。他决定充分利用每次从寝室到机房的时间,在校园里散散步。整个HDU校园呈方形布局,可划