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. jQuery1.11源码分析(3)-----Sizzle源码中的浏览器兼容性检测和处理[原创]

    上一章讲了正则表达式,这一章继续我们的前菜,浏览器兼容性处理. 先介绍一个简单的沙盒测试函数. /** * Support testing using an element * @param {Fun ...

  2. html5 canvas贝塞尔曲线篇(下)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  3. [整理]HTML5 WebSocket

    vs2013 win7 iis7.5貌似不行,查阅了资料,好像得iis8支持 <ASP.NET SignalR系列>第一课 认识SignalR http://www.cnblogs.com ...

  4. [转载]Remote Desktop Manager 9.0.10.0 Enterprise 附企业版注册码 (强大的远程控制软件)

    http://www.52xiazai.net/pcsoft/network/yuanchen/20131206/2429.html

  5. HDU 2086 A=? 数学题

    题目描述:有一个公式,Ai = (Ai-1 + Ai+1)/2 - Ci (i = 1, 2, 3, .... n).,如果给出A0, An+1, 和 C1, C2, .....Cn要你计算出A1是多 ...

  6. git log查看某一个分支的提交

    如果想查看某一个分支的提交信息:git log 或者是查看分支名:git log $分支名/tag名/远程分支名 查看提交的详情: git log -p

  7. 数链剖分(树的统计Count )

    题目链接:https://cn.vjudge.net/contest/279350#problem/C 具体思路:单点更新,区间查询,查询的时候有两种操作,查询区间最大值和区间和. 注意点:在查询的时 ...

  8. Java实现去火柴游戏

    package com.gh.p10; /** * Created by Lenovo on 2014/12/10. */ import java.util.Random; import java.u ...

  9. WCF使用Net.tcp绑定时候出现错误:元数据包含无法解析的引用

    在WCF服务编程中,客户端添加引用服务时,出现如下错误: 元数据包含无法解析的引用:“net.tcp://192.168.1.105:1314/LoginService”. 套接字连接已中止.这可能是 ...

  10. ASP.NET MVC 路由学习

    参考 http://www.cnblogs.com/yaozhenfa/p/asp_net_mvc_route_2.html 说明 1."解决与物理路径的冲突"这段教程这里如果不起 ...