2015 多校第三场

 

1002

求max(f(a),f(b)), f为不重复的素因子个数, 在数据要求以内 , 每个数最多有7个,可以打表。

 1 /*Author :usedrose  */
 2 /*Created Time :2015/7/29 11:32:09*/
 3 /*File Name :2.cpp*/
 4 #include <cstdio>
 5 #include <iostream>
 6 #include <algorithm>
 7 #include <sstream>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <climits>
11 #include <vector>
12 #include <string>
13 #include <ctime>
14 #include <cmath>
15 #include <deque>
16 #include <queue>
17 #include <stack>
18 #include <set>
19 #include <map>
20 #define INF 0x3f3f3f3f
21 #define eps 1e-8
22 #define pi acos(-1.0)
23 #define MAXN 1000010
24 #define OK cout << "ok" << endl;
25 #define o(a) cout << #a << " = " << a << endl
26 #define o1(a,b) cout << #a << " = " << a << "  " << #b << " = " << b << endl
27 using namespace std;
28 typedef long long LL;
29 int num[MAXN][10];
30 int p[MAXN];
31 int f[MAXN];
32 
33 void init()
34 {
35     for (int i = 2;i < MAXN;++ i) 
36         if (!p[i]) 
37     {
38         f[i]++;
39             for (int j = i+i; j < MAXN; j += i)  {
40                 p[j] = 1;
41                 f[j] ++;
42             }
43         }
44 
45     for (int j = 0;j < 7; ++ j)    {
46         for (int i = 2;i < MAXN; ++ i) {
47             num[i][j] = num[i-1][j] + (f[i] == j + 1);
48         }    
49     }
50 }
51 
52 int T, l, r;
53 
54 int main()
55 {
56     //freopen("data.in","r",stdin);
57     //freopen("data.out","w",stdout);
58     cin.tie(0);
59     ios::sync_with_stdio(false);
60     init();
61     cin >> T;
62     while (T--) {
63         cin >> l >> r;
64         int k[8];
65         memset(k , 0, sizeof(k));
66         for (int i = 0;i < 7; ++ i) {
67             k[i+1] = num[r][i] - num[l-1][i];
68         }
69         int gcd = 1;
70         if (k[2] + k[4] + k[6] >= 2) gcd = 2;
71         if (k[3] + k [6] >= 2) gcd = 3;
72         if (k[4] >= 2) gcd = 4;
73         if (k[5] >= 2) gcd = 5;
74         if (k[6] >= 2) gcd = 6;
75         if (k[7] >= 2) gcd = 7;
76         cout << gcd << endl;
77     }
78     return 0;
79 }
View Code

 

1004

一开始题意没看懂, 蛋疼。

  1 #include <iostream>
  2 #include <stdio.h>
  3 #include <algorithm>
  4 #include <string.h>
  5 #include <string>
  6 #include <math.h>
  7 #include <stack>
  8 #include <queue>
  9 #include <vector>
 10 #include <map>
 11 #include <set>
 12 #pragma warning(disable:4996)
 13 
 14 #define Zero(a) memset(a, 0, sizeof(a))
 15 #define Neg(a)  memset(a, -1, sizeof(a))
 16 #define All(a) a.begin(), a.end()
 17 #define PB push_back
 18 #define repf(i,a,b) for(i = a;i <= b; i++)
 19 #define lson l,m,rt<<1
 20 #define rson m+1,r,rt<<1|1
 21 #define root 1,n,1
 22 #define ld rt << 1
 23 #define rd rt << 1 | 1
 24 #define ll long long
 25 #define MAXN 200005
 26 #define INF 6666666
 27 #define mod 10007
 28 using namespace std;
 29 char mp[110][110];
 30 int mpp[110][110];
 31 int n;
 32 int m;
 33 int ret(char c){
 34     if (c == 'R') return 1;
 35     if (c == 'B') return 2;
 36     if (c == 'G') return 3;
 37     if (c == '.') return 0;
 38 }
 39 void init(){
 40     scanf("%d", &n);
 41     memset(mpp, 0, sizeof(mpp));
 42     for (int i = 0; i < n; ++i){
 43         scanf("%s", mp[i]);
 44         m = strlen(mp[i]);
 45         for (int j = 0; j < m; ++j){
 46             mpp[i][j] = ret(mp[i][j]);
 47         }
 48     }
 49     //cout << n << " " << m << endl;
 50 }
 51 int solve(){
 52     int ans = 0;
 53     bool flag = false;
 54     for (int k = n - 1; k >= 1 - m; --k){
 55         flag = false;
 56         for (int x = 0; x < m; ++x){
 57             int y = x + k;
 58             if (x >= 0 && x < m && y >= 0 && y < n){
 59                 if ((mpp[y][x] & 1)){
 60                     mpp[y][x]-=1;
 61                     if (!flag){
 62                         flag = true;
 63                         ans++;
 64                     }
 65                 }else if ((mpp[y][x] & 1) == 0 && flag) 
 66                     flag = false;
 67             }
 68         }
 69     }
 70     flag = false;
 71     for (int k = 0; k < n + m ; ++k){
 72         flag = false;
 73         for (int x = 0; x < m; ++x){
 74             int y = k - x;
 75             if (x >= 0 && x < m && y >= 0 && y < n){
 76                 if ((mpp[y][x] & 2)){
 77                     mpp[y][x] -= 2;
 78                     if (!flag){
 79                         flag = true;
 80                         ans++;
 81                     }    
 82                 }else if ((mpp[y][x] & 2) == 0 && flag) 
 83                     flag = false;
 84             }
 85         }
 86     }
 87     return ans;
 88 }
 89 int main(){
 90     //freopen("data.in","r",stdin);
 91     //freopen("data.out","w",stdout);
 92     int T;
 93     while (~scanf("%d", &T)){
 94         while (T--){
 95             init();
 96             printf("%d\n", solve());
 97         }
 98     }
 99     return 0;
100 }
View Code

 

1008

搜索。。论读懂题目的重要性 + 合理的思路

 1 /*Author :usedrose  */
 2 /*Created Time :2015/7/29 16:44:55*/
 3 /*File Name :2.cpp*/
 4 #include <cstdio>
 5 #include <iostream>
 6 #include <algorithm>
 7 #include <sstream>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <climits>
11 #include <vector>
12 #include <string>
13 #include <ctime>
14 #include <cmath>
15 #include <deque>
16 #include <queue>
17 #include <stack>
18 #include <set>
19 #include <cassert>
20 #include <map>
21 #define INF 0x3f3f3f3f
22 #define eps 1e-8
23 #define pi acos(-1.0)
24 #define MAXN 1110
25 #define OK cout << "ok" << endl;
26 #define o(a) cout << #a << " = " << a << endl
27 #define o1(a,b) cout << #a << " = " << a << "  " << #b << " = " << b << endl
28 using namespace std;
29 typedef long long LL;
30 
31 LL n;
32 
33 void dfs(LL l, LL r)
34 {
35     if (l < 0 || l > r) return;
36     if (l == 0) {
37         n = min(n, r);
38         return;
39     }
40     LL len = r - l + 1;
41     if (l - len < 0) return;
42     dfs(l, r + len);
43     if (len != 1)
44         dfs(l, r + len - 1);
45     dfs(l - len, r);
46     dfs(l - len - 1, r);
47 }
48 
49 int main()
50 {
51     //freopen("data.in","r",stdin);
52     //freopen("data.out","w",stdout);
53     cin.tie(0);
54     ios::sync_with_stdio(false);
55     LL a, b;
56     while (cin >> a >> b) {
57         n = INF;
58         dfs(a, b);
59         cout << ((n == INF) ? -1 : n) << endl;
60     }
61     return 0;
62 }
View Code

 

 

1010

按权值建图之后,从权值高到权值低的方向bfs, 或者像别人一样DFS

 1 /*Author :usedrose  */
 2 /*Created Time :2015/7/29 14:48:09*/
 3 /*File Name :2.cpp*/
 4 #include <cstdio>
 5 #include <iostream>
 6 #include <algorithm>
 7 #include <sstream>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <climits>
11 #include <vector>
12 #include <string>
13 #include <ctime>
14 #include <cmath>
15 #include <deque>
16 #include <queue>
17 #include <stack>
18 #include <set>
19 #include <map>
20 #define INF 0x3f3f3f3f
21 #define eps 1e-8
22 #define pi acos(-1.0)
23 #define MAXN 500110
24 #define OK cout << "ok" << endl;
25 #define o(a) cout << #a << " = " << a << endl
26 #define o1(a,b) cout << #a << " = " << a << "  " << #b << " = " << b << endl
27 using namespace std;
28 typedef long long LL;
29 
30 int n;
31 int w[MAXN];
32 vector<int> G[MAXN];
33 int du[MAXN], num[MAXN];
34 
35 int gao()
36 {
37     queue<int> q;
38     for (int i = 1;i <= n; ++ i)
39         if (du[i] == 0)
40             q.push(i);
41     int ans = 0;
42     while (!q.empty()) {
43         int t = q.front();
44         q.pop();
45         ans = max(ans, num[t]);
46         for (int i = 0;i < G[t].size() ; ++ i) {
47             int v = G[t][i];
48             num[v] += num[t];
49             if (--du[v] == 0)
50                 q.push(v);
51         }
52     }
53     return ans;
54 }
55 
56 
57 void init()
58 {
59     for (int i = 1;i <= n; ++ i) {
60         du[i] = 0;
61         num[i] = 1;
62         G[i].clear();
63     }
64 }
65 
66 int main()
67 {
68     //freopen("data.in","r",stdin);
69     //freopen("data.out","w",stdout);
70     cin.tie(0);
71     ios::sync_with_stdio(false);
72     while (cin >> n) {
73         init();
74         for (int i = 1;i <= n; ++ i) 
75             cin >> w[i];
76         int x, y;
77         for (int i = 1;i < n; ++ i) {
78             cin >> x >> y;
79             if (w[x] > w[y]) swap(x, y);
80             G[y].push_back(x);
81             du[x]++;
82         }
83         cout << gao() << endl;
84     }
85     return 0;
86 }
View Code

DFS代码 转自 http://blog.csdn.net/gaoxiang36999/article/details/47110271

 1 /*Author :usedrose  */
 2 /*Created Time :2015/7/29 14:48:09*/
 3 /*File Name :2.cpp*/
 4 #include <cstdio>
 5 #include <iostream>
 6 #include <algorithm>
 7 #include <sstream>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <climits>
11 #include <vector>
12 #include <string>
13 #include <ctime>
14 #include <cmath>
15 #include <deque>
16 #include <queue>
17 #include <stack>
18 #include <set>
19 #include <map>
20 #define INF 0x3f3f3f3f
21 #define eps 1e-8
22 #define pi acos(-1.0)
23 #define MAXN 500110
24 #define OK cout << "ok" << endl;
25 #define o(a) cout << #a << " = " << a << endl
26 #define o1(a,b) cout << #a << " = " << a << "  " << #b << " = " << b << endl
27 using namespace std;
28 typedef long long LL;
29 
30 int n;
31 int w[MAXN];
32 vector<int> G[MAXN];
33 int du[MAXN], num[MAXN];
34 
35 int gao()
36 {
37     queue<int> q;
38     for (int i = 1;i <= n; ++ i)
39         if (du[i] == 0)
40             q.push(i);
41     int ans = 0;
42     while (!q.empty()) {
43         int t = q.front();
44         q.pop();
45         ans = max(ans, num[t]);
46         for (int i = 0;i < G[t].size() ; ++ i) {
47             int v = G[t][i];
48             num[v] += num[t];
49             if (--du[v] == 0)
50                 q.push(v);
51         }
52     }
53     return ans;
54 }
55 
56 
57 void init()
58 {
59     for (int i = 1;i <= n; ++ i) {
60         du[i] = 0;
61         num[i] = 1;
62         G[i].clear();
63     }
64 }
65 
66 int main()
67 {
68     //freopen("data.in","r",stdin);
69     //freopen("data.out","w",stdout);
70     cin.tie(0);
71     ios::sync_with_stdio(false);
72     while (cin >> n) {
73         init();
74         for (int i = 1;i <= n; ++ i) 
75             cin >> w[i];
76         int x, y;
77         for (int i = 1;i < n; ++ i) {
78             cin >> x >> y;
79             if (w[x] > w[y]) swap(x, y);
80             G[y].push_back(x);
81             du[x]++;
82         }
83         cout << gao() << endl;
84     }
85     return 0;
86 }
View Code

 

1011

数据量很小 随便搞

 1 /*Author :usedrose  */
 2 /*Created Time :2015/7/28 11:55:10*/
 3 /*File Name :2.cpp*/
 4 #include <cstdio>
 5 #include <iostream>
 6 #include <algorithm>
 7 #include <sstream>
 8 #include <cstdlib>
 9 #include <cstring>
10 #include <climits>
11 #include <vector>
12 #include <string>
13 #include <ctime>
14 #include <cmath>
15 #include <deque>
16 #include <queue>
17 #include <stack>
18 #include <set>
19 #include <map>
20 #define INF 0x3f3f3f3f
21 #define eps 1e-8
22 #define pi acos(-1.0)
23 #define MAXN 110
24 #define OK cout << "ok" << endl;
25 #define o(a) cout << #a << " = " << a << endl
26 #define o1(a,b) cout << #a << " = " << a << "  " << #b << " = " << b << endl
27 using namespace std;
28 typedef long long LL;
29 
30 vector<int> G[MAXN];
31 int n, k;
32 int du[MAXN];
33 int num[MAXN];
34 int vis[MAXN];
35 
36 int main()
37 {
38     while (cin >> n >> k) {
39         for (int i = 1;i <= n; ++ i)  {
40             G[i].clear();
41             num[i] = 1, du[i] =  0, vis[i] = 0;
42         }
43         int x, y;
44         for (int i = 0;i < n-1; ++ i) {
45             cin >> x >> y;
46             G[y].push_back(x);
47             du[x]++;
48         }
49        for (int k = 1;k <= n; ++ k) {      
50             for (int i = 1;i <= n; ++ i) {
51                 if (du[i] == 0) {
52                     for (int j = 0;j < G[i].size(); ++ j) {
53                         int v = G[i][j];
54                         du[v]--;
55                         num[v] += num[i];
56                     }
57                     du[i] = -1;
58                 }
59             }
60        }
61        int ans = 0;
62        for (int i = 1; i <= n; ++ i) {
63            if (num[i] - 1 == k) ans++;
64        }
65        cout << ans << endl;
66     }
67     return 0;
68 }
View Code

 

转载于:https://www.cnblogs.com/usedrosee/p/4687011.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/273092.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java多线程必须掌握吗_多线程模式有什么作用(java多线程必须掌握的知识)

什么叫多进程&#xff1f;在预估中&#xff0c;过程是已经实行的计算机语言的一个案例。或是简易地说&#xff0c;运作程序流程也称之为过程。多进程代表着“在单独计算机软件中具备2个或更好几个CPU。比如&#xff0c;假如计算机软件具备双核四线程&#xff0c;而且另外运作(实…

java配置irport,一个production模式下的Ror环境搭建-airport -JavaEye技术社区

比较了一些ROR的生产环境&#xff0c;经过测试&#xff0c;还是选用了mongrelapache的方式。1.download安装包:httpd-2.2.3.tar.gz ,apache服务器ruby-1.8.5.tar.gzrubygems-0.9.0.tgzmongrel-0.3.13.4.gem2.安装rubytar zxvf ruby-1.8.5.tar.gz./configuremakemake install3.安…

php ?redis,PHP使用Redis存储Session

对于大访问量的网站来说&#xff0c;会有许多的客户端和服务端建立链接&#xff0c;就会生成许多 Session 文件&#xff0c;由于 Session 文件是存储在硬盘上的&#xff0c;因此每次服务器去读取这些 Session 文件都要经过许多的 I/O 操作。PHP 中可使用 session_set_save_hand…

微信支付现金红包接口(转)

微信支付现金红包接口正式开放&#xff0c;只需开通微信支付&#xff0c;即可接入现金红包。通过现金红包接口&#xff0c;公众号开发者可以策划相关运营活动&#xff0c;向用户发放微信支付现金红包&#xff0c;更好的达到品牌推广及回馈用户的效果。具体能力如下&#xff1a;…

php 打印对象到文件,php实现将数组或对象写入到文件的方法小结【三种方法】...

本文实例讲述了php实现将数组或对象写入到文件的方法。分享给大家供大家参考&#xff0c;具体如下&#xff1a;php将数组或对象原样写入或保存到文件有三种方法可以实现第一种方法是使用serialize&#xff0c;第二种方法是使用print_r&#xff0c;第三种方法是使用var_export&a…

The return types for the following stored procedures could not be detected

1、使用dbml映射数据库&#xff0c;添加存储过程到dbml文件时报错。 2、原因&#xff1a;存储过程中使用了临时表 3、解决方案 3.1 通过自定义表值变量实现 Ex: DECLARE TempTable TABLE ( AttributeID INT, Value NVARCHAR(200) ) INSERT INTO TempTable Select * from Attrib…

webstock php,workerman_connection

workerman_connection 测试WebStock 功能Description整理PHP 实现webstock 功能的相关流程。感谢workerman 开发作者提供开源组件。安装 composer# curl -sS https://getcomposer.org/installer | php如果安装 composer 提示PHP 版本不够按照如下处理&#xff0c;否则跳过。提示…

短信通信的几种情况和CMS错误

1&#xff0e; 如何与GSM MODEM建立通信联系 2&#xff0e; 不能与GSM MODEM进行正常的通信或总是在仿真终端上出现乱码 3&#xff0e; 如何才能知道错误代码 4&#xff0e; 发送短消息后&#xff0c;收到出错信息CMS ERROR 512 5&#xff0e; 发送短消息后&#xff0c;收到出错…

php+管道+pipe管道,angular2+管道pipe

一.什么是Pipe?就是管道&#xff0c;简单来说&#xff0c;管道的作用就是传输。并且不同的管道具有不同的作用。(其实就是处理数据)二.pipe用法{{ 输入数据 | 管道 : 管道参数}} (其中‘|’是管道操作符)三.Angular自带的pipe函数管道功能DatePipe 日期管道&#xff0c;格式…

[字符串]与[数组]的互相转换

1.字符串转换为数组 var a"1,2,3";var ba.split(,); 2.数组转换为字符串 var c[1,2,3];var dc.join(,); 转载于:https://www.cnblogs.com/zqzjs/p/4693849.html

java android 界面设计,Android精美登录界面设计

在网上在到一个登录界面感觉挺不错的&#xff0c;给大家分享一下~先看效果图&#xff1a;这个Demo除了按钮、小猫和Logo是图片素材之外&#xff0c;其余的UI都是通过代码实现的。一、背景背景蓝色渐变&#xff0c;是通过一个xml文件来设置的。代码如下&#xff1a;background_l…

linux查看文件大小

du -s [文件名] du -sh [文件名] ls -lh [文件名]转载于:https://www.cnblogs.com/chenqionghe/p/4694070.html

jmeter java接口,jmeter并发测试java接口 | 学步园

Sample这里我用到主要JMeter的线程和报表&#xff0c;扩展了他的“Java请求”这个应用类别。要扩展此应用&#xff0c;要用到lib/ext/ApacheJMeter_java.jar,他封装此应用。首先&#xff0c;需要继承ApacheJMeter_java.jar中的抽象类AbstractJavaSamplerClient&#xff0c;它提…

Web项目练习总结(错误校正篇)

老师布置任务&#xff0c;从SVN上弄个项目来练练手&#xff0c;熟悉下过程。 myeclipse安装SVN 然后把MobileManageSys下下来 然后漫长的等待。。。 然后配置数据库&#xff0c;导入&#xff0c;这里用的是SQLyog&#xff0c;其他的也可以 之后这里会产生一大堆的错误&#xff…

php 网格,PHP中的数据网格

你可以使用http://phpgrid.com$dg new C_DataGrid("SELECT * FROM orders", "orderNumber", "orders");// change column titles$dg->set_col_title("orderNumber", "Order No.");$dg->set_col_title("orderDat…

matlab常用隶属度函数,常用隶属函数.ppt

模糊集基本理论 典型隶属函数 如前所述, 构造恰当的隶属函数是模糊集理论应用的基础。一种基本的构造隶属函数的方法是“参考函数法”, 即参考一些典型的隶属函数, 通过选择适当的参数, 或通过拟合、整合、实验等手段得到需要的隶属函数。 下面介绍典型隶属函数(最早由法国学者…

适配器模式的应用

1.适配源类&#xff1a;java.util.Properties 2.适配目标类&#xff1a;FileIO 3.适配器 FileProperties package fileio;import java.io.IOException;public interface FileIO {public void readFromFile(String fileName) throws IOException;public void writeToFile(String…

nginx php7提速,nginx+php7-fpm 性能提升几倍跟踪实践结果并优化

nginxphp7-fpm 性能提升几倍跟踪实践结果并优化nginxphp7-fpm 性能提升几倍&#xff0c;跟踪实践结果并优化历史ubuntu服务器使用的apachephp5&#xff0c;现在使用nginuxphp7-fpm方式&#xff0c;看效果图&#xff0c;啥也不说了。强烈推荐升级到php7&#xff0c;当然升级中基…

Where条件的in里面放太多数据导致很慢

比如&#xff1a;select * from TableA where ID in (42,216,219,230,231,220,249,250,221,251,252,217,253,255,256,254,257,258,1804) 52W数据&#xff0c;查询速度19386ms&#xff0c;好慢怎么办&#xff1f;程序都卡死了。 那么试一下百度搜索到的优化方式&#xff1f; 1.将…

inur new.php id,Cmsez(随易)全站系统注入0day

allinurl:"owered by CMSEZ" comments.php inurlowered by CMSEZ//commentsinclude "mainfile.php";$artnew article();//设定$confirmyes;//yes:需要管理员认证后才能显示,no:直接显示$membernew member();$user_info$member->member_auth();$ulevel$u…