Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2)
 #include <bits/stdc++.h>
 using namespace std;

 int n,m,k;
 ;

 int main()
 {
     cin>>n>>m>>k;
     ;i<=k-;++i) {
         sum+=(n+(m-))*-(i)*;
     }
     cout<<sum<<endl;
 }

A - Golden Plate

一个三维数组确定一条路径,直接搜就行

 #include<bits/stdc++.h>
 #include<iostream>
 #include<cstdio>
 #include<cstdlib>
 #include<cstring>
 #include<cmath>
 #include<algorithm>
 #include<queue>
 #include<vector>
 #include<map>
 #define lson i<<1
 #define rson i<<1|1
 #define LS l,mid,lson
 #define RS mid+1,r,rson
 #define mem(a,x) memset(a,x,sizeof(a))
 #define gcd(a,b) __gcd(a,b)
 #define ll long long
 #define ull unsigned long long
 #define lowbit(x) (x&-x)
 #define pb(x) push_back(x)
 #define enld endl
 #define mian main
 #define itn int
 #define prinft printf
 #pragma GCC optimize(2)
 //#pragma comment(linker, "/STACK:102400000,102400000")

 const double PI = acos (-1.0);
 const int INF = 0x3f3f3f3f;
 ;
 ;
 ;
 ;

 using namespace std;

 int n,cnt,temp;
 int a[MAXN],b[MAXN],ans[MAXN];
 //int a,b;
 ][][];

 void init() {
     mem(t,-);
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
     t[][][]=,t[][][]=;
 }

 int main() {
     std::ios::sync_with_stdio(false);
     cin.tie(NULL);
     init();
     while(cin>>n) {
         mem(ans,-);
         ; i<=n-; ++i) {
             cin>>a[i];
         }
         ; i<=n-; ++i) {
             cin>>b[i];
         }
         ; i<=; ++i) {
             temp=i;
             cnt=;
             ans[++cnt]=temp;
             ; j<=n-; ++j) {
                 //cerr<<'#'<<a[j]<<' '<<b[j]<<' '<<temp<<' '<<t[a[j]][b[j]][temp]<<endl;
                 ) {
                     temp=t[a[j]][b[j]][temp];
                     ans[++cnt]=temp;
                 } else {
                     cnt=;
                     break;
                 }
             }
             if(cnt==n)
                 break;
         }
         if(cnt==n) {
             cout<<"YES"<<endl;
             ; i<=n; ++i) {
                 )
                     cout<<' ';
                 cout<<ans[i];
             }
             cout<<endl;
         } else
             cout<<"NO"<<endl;
     }

     ;
 }

B - Curiosity Has No Limits

二分+贪心(只要n在a+b的范围内,所有的数都可以放进去)

 #include<bits/stdc++.h>
 #include<iostream>
 #include<cstdio>
 #include<cstdlib>
 #include<cstring>
 #include<cmath>
 #include<algorithm>
 #include<queue>
 #include<vector>
 #include<map>
 #define lson i<<1
 #define rson i<<1|1
 #define LS l,mid,lson
 #define RS mid+1,r,rson
 #define mem(a,x) memset(a,x,sizeof(a))
 #define gcd(a,b) __gcd(a,b)
 #define ll long long
 #define ull unsigned long long
 #define lowbit(x) (x&-x)
 #define pb(x) push_back(x)
 #define enld endl
 #define mian main
 #define itn int
 #define prinft printf
 #pragma GCC optimize(2)
 //#pragma comment(linker, "/STACK:102400000,102400000")

 const double PI = acos (-1.0);
 const int INF = 0x3f3f3f3f;
 ;
 ;
 ;
 ;

 using namespace std;

 ll a,b,n,m;

 bool check(ll m) {
     )/>(a+b))
         return true;
     else
         return false;
 }

 ll ans1[MAXN],ans2[MAXN];

 int main() {
     //std::ios::sync_with_stdio(false);
     //cin.tie(NULL);

     while(cin>>a>>b) {
         ll l=-,r=*sqrt(a+b);
         ; i<=; ++i) {
             m=(l+r)/;
             if(check(m))
                 r=m-;
             else
                 n=m,l=m+;
         }
         cerr<<n<<endl;
         ll cnt1=,cnt2=;
         ; i--) {
             if(i<=a) {
                 ans1[++cnt1]=i;
                 a-=i;
             } else {
                 ans2[++cnt2]=i;
                 b-=i;
             }
         }

         cout<<cnt1<<endl;
         ; i<=cnt1; ++i) {
             )
                 cout<<' ';
             cout<<ans1[i];
         }
         cout<<endl<<cnt2<<endl;
         ; i<=cnt2; ++i) {
             )
                 cout<<' ';
             cout<<ans2[i];
         }
         cout<<endl;

     }

     ;
 }

C - Cram Time

Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2)的更多相关文章

  1. Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2) D. Minimum path

    http://codeforces.com/contest/1072/problem/D bfs 走1步的最佳状态 -> 走2步的最佳状态 -> …… #include <bits/ ...

  2. Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2) D. Minimum path(字典序)

    https://codeforces.com/contest/1072/problem/D 题意 给你一个n*n充满小写字母的矩阵,你可以更改任意k个格子的字符,然后输出字典序最小的从[1,1]到[n ...

  3. Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2)D(思维,DP,字符串)

    #include<bits/stdc++.h>using namespace std;char c[2007][2007];char ans[4007];int s[2007][2007] ...

  4. (AB)Codeforces Round #528 (Div. 2, based on Technocup 2019 Elimination Round

    A. Right-Left Cipher time limit per test 1 second memory limit per test 256 megabytes input standard ...

  5. Codeforces Round #528 (Div. 2, based on Technocup 2019 Elimination Round 4) C. Connect Three 【模拟】

    传送门:http://codeforces.com/contest/1087/problem/C C. Connect Three time limit per test 1 second memor ...

  6. Codeforces Round #512 (Div. 2, based on Technocup 2019 Elimination Round 1) C. Vasya and Golden Ticket 【。。。】

    任意门:http://codeforces.com/contest/1058/problem/C C. Vasya and Golden Ticket time limit per test 1 se ...

  7. Codeforces Round #512 (Div. 2, based on Technocup 2019 Elimination Round 1) E. Vasya and Good Sequences(DP)

    题目链接:http://codeforces.com/contest/1058/problem/E 题意:给出 n 个数,对于一个选定的区间,区间内的数可以通过重新排列二进制数的位置得到一个新的数,问 ...

  8. Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)B. Personalized Cup

    题意:把一长串字符串 排成矩形形式  使得行最小  同时每行不能相差大于等于两个字符 每行也不能大于20个字符 思路: 因为使得行最小 直接行从小到大枚举即可   每行不能相差大于等于两个字符相当于  ...

  9. Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3) C. Playing Piano

    题意:给出一个数列 a1 a2......an  让你构造一个序列(该序列取值(1-5)) 如果a(i+1)>a(i) b(i+1)>b(i) 如果a(i+1)<a(i)  那么b( ...

随机推荐

  1. .NET面试题系列(五)数据结构(Array、List、Queue、Stack)及线程安全问题

    常用数据结构的时间复杂度 如何选择数据结构 Array (T[]) 当元素的数量是固定的,并且需要使用下标时. Linked list (LinkedList<T>) 当元素需要能够在列表 ...

  2. 关于Web安全的那些事(XSS攻击)

    概述 XSS攻击是Web攻击中最常见的攻击方法之一,它是通过对网页注入可执行代码且成功地被浏览器执行,达到攻击的目的,形成了一次有效XSS攻击,一旦攻击成功,它可以获取用户的联系人列表,然后向联系人发 ...

  3. [转载]AngularJS 指令 用法

    http://book.2cto.com/201312/37782.html http://www.itnose.net/detail/6144038.html http://www.cnblogs. ...

  4. [转载]AngularJS 开发者最常犯的 10 个错误

    http://www.oschina.net/translate/top-10-mistakes-angularjs-developers-make

  5. iOS必学技-cocoapods

    我就不再造轮子了,网上的教程很详细,楼主亲测,好用. http://code4app.com/article/cocoapods-install-usage 楼主安装使用过程中遇到以下几个问题,同学们 ...

  6. github for Mac 教程

    Mac系统自带git,所有我们使用Mac搬的github客户端,无需安装git,所以使用github for Mac 超级简单,下载安装就好了. 1github for Mac 下载地址:https: ...

  7. UVALive 7456 Least Crucial Node

    题目链接 题意: 给定一个无向图,一个汇集点,问哪一个点是最关键的,如果有多个关键点,输出序号最小的那个. 因为数据量比较小,所以暴力搜索就行,每去掉一个点,寻找和汇集点相连的还剩几个点,以此确定哪个 ...

  8. mysql集成部署

    经常听说mysql数据库是集成在系统中,也一直不太明白集成的概念.今天才明白集成的概念就是将mysql所有的文件放到一个文件夹下放到系统中,也就是将mysql采用目录迁移部署的方式进行安装.在上一篇研 ...

  9. atom使用markdown

    atom使用markdown 最近因为不喜欢博客园自身带的编辑工具,所以尝试使用markdown,目前只是想简单的把标题和内容分的开一些,以后在慢慢熟悉吧 1.atom上安装markdown 在没有外 ...

  10. Linux的软中断处理实现 【转】

    转自:http://blog.chinaunix.net/uid-25909619-id-3070190.html 一.概念   首先我们要知道为什么中断需要下半部 .我们可以想象一下,如果没有下半部 ...