<个人笔记>基础算法模板题

1.基础算法

(1)一维前缀和

#include<iostream>using namespace std;const int N = 1e5+10;int p[N],res[N];
int n,Q,l,r;int main()
{cin >> n >> Q;for(int i = 1;i<=n;++i){cin >> p[i];res[i] = res[i - 1] + p[i];}while(Q--){cin >> l >> r;cout << res[r] - res[l - 1] << endl;}return 0;}

(2)二维前缀和

#include<iostream>using namespace std;const int N = 1005;int p[N][N],res[N][N];
int n,m,Q,x1,x2,y1,y2;int main()
{cin >> n >> m >> Q;for(int i = 1;i <= n; ++i){for(int j = 1;j<=m;++j){cin >> p[i][j];res[i][j] = res[i - 1][j] + res[i][j - 1] - res[i - 1][j - 1] + p[i][j];}} while(Q--){cin >> x1 >> y1 >> x2 >> y2;cout << res[x2][y2] + res[x1 - 1][y1 - 1] - res[x1 - 1][y2] - res[x2][y1 - 1] << endl; }return 0;}

(3) 一维差分

#include<iostream>using namespace std;const int N = 1e5 + 10;int p[N],res[N];
int n,Q,l,r,x;int main(){cin >> n >> Q;for(int i = 1;i <= n;++i){cin >> p[i];res[i] = p[i] - p[i - 1];}while(Q--){cin >> l >> r >> x;res[l] += x;res[r + 1] -= x;}int tot = 0;for(int i = 1;i<=n;++i){tot += res[i];cout << tot << ' ';}return 0;
}

(4)二维差分

#include<iostream>using namespace std;const int N = 1005;int p[N][N],res[N][N];int n,m,Q,x1,y1,x2,y2,c;void add(int x1,int y1,int x2,int y2,int c)
{res[x1][y1] += c;res[x2 + 1][y2 + 1] += c;res[x1][y2 + 1] -= c;res[x2 + 1][y1] -= c; 
}int main()
{cin >> n >> m >> Q;for(int i = 1;i<=n;++i){for(int j = 1;j<=m;++j){cin >> p[i][j];add(i,j,i,j,p[i][j]);}}while(Q--){cin >> x1 >> y1 >> x2 >> y2 >> c;add(x1,y1,x2,y2,c);}for(int i = 1;i <= n; ++i){for(int j = 1;j <= m; ++j){res[i][j] += res[i - 1][j] + res[i][j - 1] - res[i - 1][j - 1];cout << res[i][j] << ' ';}cout << endl;}return 0;} 

(5)双指针

#include<iostream>using namespace std;const int N = 1e5 + 10;int cnt[N],p[N];
int n,len = -1;int main(){cin >> n;for(int i = 1;i<=n;++i){cin >> p[i];}for(int i = 1,j = 1;j <= n;++j){cnt[p[j]]++;while(cnt[p[j]] > 1){cnt[p[i]]--;i++;}len = max(j - i + 1,len);	}cout << len << endl;return 0;
}

(6)区间合并

#include<iostream>
#include<vector>
#include<algorithm>using namespace std;const int N = 1e5 + 10;typedef pair<int,int>PII;vector<PII>q;int n;
int cnt = 0;int main(){cin >> n;for(int i = 1;i <= n; ++i){int l,r;cin >> l >> r;q.push_back({l,r}); }sort(q.begin(),q.end());for(int i = 0;i < q.size();++i){int l,r;if(i == 0){cnt ++;l = q[i].first;r = q[i].second;	continue;}if(q[i].first <= r) r = max(q[i].second,r);else{cnt ++;l = q[i].first;r = q[i].second;}}cout << cnt << endl;return 0;
} 

(7)归并排序与逆序对

#include<iostream>#include<vector>using namespace std; const int N = 1e5 + 10;int n,p[N];int cnt = 0;void merge(int l,int r){if(l >= r) return;vector<int>t;t.clear();int mid = (l + r) / 2;merge(l,mid),merge(mid + 1,r);int i = l,j = mid + 1;while(i <= mid && j <= r){if(p[i] > p[j]){cnt += mid - i + 1;t.push_back(p[j]);j++;}if(p[i] <= p[j]){t.push_back(p[i]);i++;}}while(i <= mid){t.push_back(p[i]);i++;}while(j <= r){t.push_back(p[j]);j++;}for(int i = 0;i < t.size(); ++i) p[i + l] = t[i];return; }int main(){cin >> n;for(int i = 1;i <= n; ++i) cin >> p[i];merge(1,n);cout << cnt << endl;for(int i = 1;i <= n; ++i) cout << p[i] << ' ';return 0;}

(8)单调栈

#include<iostream>
#include<stack>using namespace std;int n,p;
stack<int>q;int main()
{cin >> n;while(n--){cin >> p;while(q.size() != 0 && q.top() >= p){q.pop();}if(q.size() == 0) cout << -1 << ' ';else cout << q.top() << ' '; q.push(p); }return 0;
}

(9)单调队列

#include<iostream>using namespace std;const int N = 1e6 + 10;int q[N],p[N];
int n,len;int main()
{cin >> n >> len;for(int i = 0;i < n; ++i) cin >> p[i];int h,t;h = 0,t = -1;for(int i = 0;i < n; ++i){while(h <= t && q[h] < i - len + 1) h++;while(h <= t && p[q[t]] >= p[i]) t--;t++;q[t] = i;if(i >= len - 1) cout << p[q[h]] << ' ';}cout << endl;h = 0,t = -1;for(int i = 0;i < n; ++i){while(h <= t && q[h] < i - len + 1) h++;while(h <= t && p[q[t]] <= p[i]) t--;t++;q[t] = i;if(i >= len - 1) cout << p[q[h]] << ' ';}return 0;
} 

(10)整数二分


#include<iostream>using namespace std;const int N = 1e5 + 10;int p[N];
int n,Q,x;int leftfind(int x)
{int l = 1,r = n;while(l < r){int mid = (l + r) / 2;if(p[mid] < x) l = mid + 1;else r = mid;}if(p[l] == x) return l - 1;else return -1;
}int rightfind(int x){int l = 1,r = n;while(l < r){int mid = (l + r + 1) / 2;if(p[mid] > x) r = mid - 1;else l = mid;}if(p[l] == x) return l - 1;else return -1;
}int main(){cin >> n >> Q;for(int i = 1;i <= n; ++i) cin >> p[i];while(Q--){cin >> x;cout << leftfind(x) << ' ';cout << rightfind(x) << endl;	}return 0;
} 

2.数论

(1)快速幂

#include<iostream>using namespace std;typedef long long LL;int Q;LL qmi(LL a,LL b,LL mod){LL res = 1;while(b){if(b&1) res = res * a % mod;a = a * a % mod;b = b >> 1;}return res;
}int main()
{cin >> Q;while(Q--){LL a,b,c;cin >> a >> b >> c;cout << qmi(a,b,c) << endl;}return 0;
} 

(2)约数个数

#include<unordered_map>
#include<iostream>using namespace std;unordered_map<int,int>q;
unordered_map<int,int>::iterator it;const int mod = 1e9 + 7;typedef long long LL; void handle(int x){for(int i = 2;i * i <= x;++i){if(x % i == 0){int cnt = 0;while(x % i == 0){x = x / i;cnt++;}q[i] += cnt;}}if(x > 1) q[x] += 1;}int Q,x;
LL ans = 1;int main()
{cin >> Q;while(Q--){cin >> x;handle(x); }for(it = q.begin();it != q.end();++it){int a = it->first;int b = it->second;LL res = 1;for(int i = 1;i <= b; ++i){LL res = (res * a + 1) % mod;}ans = ans * res % mod;}cout << ans << endl;
}

(3)约数之和

#include<unordered_map>
#include<iostream>using namespace std;unordered_map<int,int>q;
unordered_map<int,int>::iterator it;const int mod = 1e9 + 7;typedef long long LL; void handle(int x){for(int i = 2;i * i <= x;++i){if(x % i == 0){int cnt = 0;while(x % i == 0){x = x / i;cnt++;}q[i] += cnt;}}if(x > 1) q[x] += 1;}int Q,x;
LL ans = 1;int main()
{cin >> Q;while(Q--){cin >> x;handle(x); }for(it = q.begin();it != q.end();++it){int a = it->first;int b = it->second;LL res = 1;while(b--) {res = (res * a + 1) % mod;}ans = ans * res % mod;}cout << ans << endl;return 0;
}

(4)组合数(一)

#include<iostream>using namespace std;typedef long long LL;const int mod = 1e9 + 7;
const int N = 2005;int c[N][N];
int main()
{for(int i = 0;i < N; ++i){for(int j = 0;j <= i; ++j){if(j == 0) c[i][j] = 1;else c[i][j] = (c[i - 1][j - 1] + c[i - 1][j]) % mod;}}int Q;cin >> Q;while(Q--){int a,b;cin >> a >> b;cout << c[a][b] << endl; }return 0;
}

(5)组合数(二)

#include<iostream>using namespace std;const int N = 1e5 + 5;
const int mod = 1e9 + 7;typedef long long LL;LL f[N],inf[N];LL qmi(LL a,LL b,LL mod)
{LL res = 1;while(b){if(b & 1) res = res * a % mod;a = a * a % mod;b = b >> 1;}return res;
} int main()
{f[0] = inf[0] = 1;for(int i = 1;i < N;++i){f[i] = f[i - 1] * i % mod;inf[i] = qmi(f[i],mod - 2,mod);}int Q,a,b;cin >> Q;while(Q--){cin >> a >> b;LL ans = f[a] * inf[b] % mod * inf[a - b] % mod;cout << ans << endl;}return 0;	} 

(6)位运算

#include<iostream>using namespace std;int main(){int Q,x,cnt = 0;cin >> Q;while(Q--){cnt = 0;cin >> x;while(x){if(x&1) cnt++;x = x >> 1;}cout << cnt << ' ';}return 0;
}

(7)快速幂求解逆元

#include<iostream>using namespace std;typedef long long LL;LL qmi(LL a,LL b,LL mod){LL res = 1;while(b){if(b & 1) res = res * a % mod;a = a * a % mod;b = b >> 1;}return res;
} int main(){int Q;cin >> Q;while(Q--){LL a,p;cin >> a >> p;if(a % p == 0){cout << "impossible" << endl;continue; }cout << qmi(a,p - 2,p) << endl;}return 0;
}

(8)gcd

#include<iostream>using namespace std;int gcd(int a,int b)
{return b?gcd(b,a%b):a;
}int Q,a,b;int main()
{cin >> Q;while(Q--){cin >> a >> b;	cout << gcd(a,b) << endl;}return 0;}

(9)欧拉函数

#include<iostream>using namespace std;typedef long long LL;LL euler(int x)
{LL res = x;for(int i = 2;i * i <= x;++i){if(x % i == 0){res = res * (i - 1) / i;while(x % i == 0) x = x/i;}	}if(x > 1) res = res * (x - 1) / x; return res;
}int main(){int Q,x;cin >> Q; while(Q--){cin >> x;cout << euler(x) << endl;} return 0;
}

3.图论

(1)djistra

#include<iostream>
#include<queue>
#include<cstring>
#include<vector>using namespace std;const int N = 1e6 + 10;int dist[N];
bool st[N];
int ne[N],e[N],w[N],h[N],idx;int n,m;typedef pair<int,int>PII;
priority_queue<PII,vector<PII>,greater<PII>>q;void add(int a,int b,int c)
{e[idx] = b,ne[idx] = h[a],w[idx] = c,h[a] = idx++;
}int djistra()
{dist[1] = 0;q.push({0,1});while(q.size() != 0){PII t = q.top();q.pop();int v = t.second,d = t.first;if(st[v]) continue;st[v] = true;for(int i = h[v];i != -1;i = ne[i]){int j = e[i];if(dist[j] > d + w[i]){dist[j] = d + w[i];q.push({dist[j],j});}}	}  if(dist[n] == 0x3f3f3f3f) return -1;else return dist[n];}int main()
{memset(h, -1 ,sizeof(h));memset(dist, 0x3f, sizeof(dist));cin >> n >> m;for(int i = 1;i <= m; ++i){int a,b,c;cin >> a >> b >> c;add(a,b,c);}cout << djistra() << endl;return 0;}

(2)floyd

#include<iostream>
#include<cstring>using namespace std;const int N = 205;int p[N][N];int n,m,k;void floyd(){for(int k = 1;k <= n; ++k){for(int i = 1;i <= n; ++i){for(int j = 1;j <= n; ++j){if(p[i][j] > p[i][k] + p[k][j]) p[i][j] = p[i][k] + p[k][j];}}}
}int main()
{cin >> n >> m >> k;memset(p,0x3f,sizeof(p));for(int i = 1;i <= n; ++i) p[i][i] = 0;for(int i = 1;i <= m; ++i){int a,b,c;cin >> a >> b >> c;p[a][b] = min(p[a][b],c);}floyd(); while(k--){int a,b;cin >> a >> b;if(p[a][b] > 0x3f3f3f3f/2) cout << "impossible" << endl;else cout << p[a][b] << endl;}return 0;}

(3)spfa

#include<iostream>
#include<cstring>
#include<queue>using namespace std;const int N = 1e6 + 10;int dist[N];
int h[N],e[N],ne[N],w[N],idx;
bool st[N];int n,m;void add(int a,int b,int c)
{e[idx] = b,ne[idx] = h[a],w[idx] = c,h[a] = idx++;
}void spfa()
{queue<int>q;dist[1] = 0;st[1] = true; q.push(1);while(q.size() != 0){auto t = q.front();q.pop();st[t] = false;for(int i = h[t]; i != -1; i = ne[i]){int j = e[i];if(dist[j] > dist[t] + w[i]){dist[j] = dist[t] + w[i];if(st[j]) continue;st[j] = true;q.push(j);		}	}	}if(dist[n] == 0x3f3f3f3f) cout << "impossible" << endl;else cout << dist[n] << endl;	
}int main()
{memset(h,-1,sizeof(h));memset(dist,0x3f,sizeof(dist));cin >> n >> m;for(int i = 1;i <= m;++i){int a,b,c;cin >> a >> b >> c;add(a,b,c);}spfa();return 0; 
}

(4)树的遍历

#include<iostream>
#include<cstring>using namespace std;const int N = 1e5 + 10;bool st[N];
int e[N * 2],ne[N * 2],h[N * 2],idx = 0;
int n,ans = 0x3f3f3f3f;void add(int a,int b)
{e[idx] = b,ne[idx] = h[a],h[a] = idx++;
}int dfs(int u)
{st[u] = true;int sum = 0,tot = -1;for(int i = h[u];i != -1;i = ne[i]){int j = e[i];if(st[j]){int k = dfs(j);sum += k;tot = max(tot,k);}		}tot = max(n - 1 - sum,tot);ans = min(tot,ans);return sum + 1;}int main()
{memset(h,-1,sizeof(h));cin >> n;for(int i = 1;i <= n-1;++i){int a,b;cin >> a >> b;add(a,b);add(b,a);}dfs(1);cout << ans << endl;return 0;}

(5)图的遍历

#include<iostream>
#include<cstring>
#include<queue>using namespace std;const int N = 1e5 + 10;int ne[N],h[N],e[N],idx = 0;
int dist[N];
bool st[N];
int n,m;void add(int a,int b){e[idx] = b,ne[idx] = h[a],h[a] = idx++;
} void bfs(int u)
{st[u] = true;queue<int>q;q.push(1);while(q.size() != 0){int t = q.front();q.pop();st[t] = true;for(int i = h[t]; i != -1; i = ne[i]){int j = e[i];if(st[j]) continue;if(dist[j] > dist[t] + 1) dist[j] = dist[t] + 1;q.push(j);}}return;}int main()
{memset(h,-1,sizeof(h));memset(dist,0x3f,sizeof(dist));cin >> n >> m;for(int i = 1;i <= m; ++i){int a,b;cin >> a >> b;add(a,b);}dist[1] = 0;bfs(1);if(dist[n] == 0x3f3f3f3f) cout << "-1" << endl;else cout << dist[n] << endl;return 0;
}

(6)拓扑序列

#include<iostream>
#include<cstring>
#include<vector>
#include<queue>using namespace std;const int N = 1e5 + 10;int in[N];
int h[N],ne[N],e[N],idx = 0;
bool st[N];vector<int>ans;
int n,m;void add(int a,int b)
{e[idx] = b,ne[idx] = h[a],h[a] = idx++;
}void bfs()
{	queue<int>q;for(int i = 1;i <= n; ++i) if(in[i] == 0) q.push(i);while(q.size() != 0){int t = q.front();q.pop();ans.push_back(t);for(int i = h[t];i != -1;i = ne[i]){int j = e[i];in[j]--;if(in[j] == 0) q.push(j);}} return;}int main()
{memset(h,-1,sizeof(h));cin >> n >> m;for(int i = 1;i <= m;++i){int a,b;cin >> a >> b;in[b]++;add(a,b);}bfs(); if(ans.size() != n) cout << "-1" << endl;else{for(int i = 0;i < n; ++i) cout << ans[i] << ' '; }return 0;} 

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

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

相关文章

项目篇 | 图书管理系统 | 管理员模块 | 首页

项目篇 | 图书管理系统 | 管理员模块 | 首页 概述 首页的功能非常简单,仅为展示四个核心数据,没有交互逻辑。 函数简介 // admin.h void homepage(); // 首页homepage:功能页,首页,实现核心数据的展示首页 // 首页 void homepage() {book_management_listen

百度AI大会发布的APP Builder和Agent Builder有什么区别

百度在AI大会发布了三款AI工具&#xff0c;包括智能体开发工具AgentBuilder、AI原生应用开发工具AppBuilder、各种尺寸的模型定制工具ModelBuilder 有很多人就问&#xff0c;APP Builder和Agent Builder有什么不一样&#xff0c;怎么那么多builder? 你们就这么理解&#xff…

Java基础之冒泡排序、二分查找、封装

Java基础 1.冒泡排序 public static void main(String[] args) {/*TODO 定义数组的 冒泡排序*/int[] intAr {3, 2, 1, 5, 6, 4, 2, 1, 8};bubbleSort(intAr);System.out.println(getArrStr(intAr)); }public static int[] bubbleSort(int[] intArr) {/*冒泡排序&#xff1a;…

什么是Java中的异常处理机制?

Java中的异常处理机制是一种用于处理运行时错误的强大系统&#xff0c;它允许程序在遇到意外情况时能够优雅地恢复。异常处理是Java语言的一个重要特性&#xff0c;它提供了一种结构化的方法来处理错误条件&#xff0c;而不是让程序崩溃或产生不可预期的行为。 **异常的基本概…

云安全与网络安全:有什么区别?

云计算已经存在了一段时间&#xff0c;但某些术语的正确含义仍然存在混乱。一个例子是区分云安全与网络安全。 首先&#xff0c;让我们看一下网络安全一词 &#xff0c;以了解它的含义。然后&#xff0c;我们将将该术语与云安全进行比较&#xff0c;以了解两者在几个关键领域的…

nginx-ingress详解

一、ingress概述 1、概述 Kubernetes是一个拥有强大故障恢复功能的集群&#xff0c;当pod挂掉时&#xff0c;集群会重新创建一个pod出来&#xff0c;但是pod的IP也会随之发生变化&#xff0c;为了应对这种情况&#xff0c;引入了service&#xff0c;通过service的标签匹配&am…

Java项目引入log4j2

log4j2 单独使用 引入依赖 <dependencies><dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-api</artifactId><version>2.14.0</version></dependency><dependency><groupId>o…

了解 Python 底层的解释器 CPython 和 Python 的对象模型

&#x1f349; CSDN 叶庭云&#xff1a;https://yetingyun.blog.csdn.net/ 一、CPython CPython 是 Python 编程语言的官方和最广泛使用的实现。它是用 C 语言编写的&#xff0c;因此得名 “CPython”。作为 Python 生态系统的核心&#xff0c;了解 CPython 的工作原理、主要特…

前端 - 基础 表单标签 - label 标签

# label 标签 其实不属于 表单标签名单经常和 表单标签 搭配使用。 # <label> 标签 为 input 元素 定义 标注&#xff08; 标签 &#xff09; 使用场景 # 其实说白&#xff0c;<label> 标签就是为了方便用户体验的,举例说明 就是说&#xff0c;如上示&am…

如何理解数据库事务

事务的概念起源于数据库系统的设计和实现。在计算机科学领域中&#xff0c;数据库系统被广泛用于存储和管理大量的数据&#xff0c;而事务的概念则是为了解决多用户并发访问数据库时可能出现的一系列问题。 事务的概念最早由 IBM 的科学家 Edgar F. Codd 在 1970 年提出。Codd…

如何在响应头中防治xss

在HTTP响应头中设置一些特定的安全策略可以帮助防止XSS&#xff08;跨站脚本&#xff09;攻击。以下是一些常用的HTTP响应头和它们的作用&#xff1a; Content-Security-Policy&#xff1a;这个响应头可以限制浏览器只加载和执行来自特定来源的脚本。例如&#xff0c;你可以设置…

力扣爆刷第123天之回溯五连刷

力扣爆刷第123天之回溯五连刷 文章目录 力扣爆刷第123天之回溯五连刷一、77. 组合二、216. 组合总和 III三、17. 电话号码的字母组合四、39. 组合总和五、40. 组合总和 II 一、77. 组合 题目链接&#xff1a;https://leetcode.cn/problems/combinations/description/ 思路&…

数据结构——6.4 图的应用

6.4 图的应用 概念 最小生成树 对于一个带权连通无向图G ( E)&#xff0c;生成树不同&#xff0c;每棵树的权(即树中所有边上的权值之和)也可能不同。设R为G的所有生成树的集合&#xff0c;若T为R中边的权值之和最小的生成树&#xff0c;则T称为G的最小生成树 (Minimum-Spanni…

【华为OD机试】跳马【C卷|200分】

【华为OD机试】-真题 !!点这里!! 【华为OD机试】真题考点分类 !!点这里 !! 题目描述 马是象棋(包括中国象棋和国际象棋)中的棋子,走法是每步直一格再斜一格, 即先横着或者直者走一格,然后再斜着走一个对角线,可进可退,可越过河界,俗称"马走日"字。 给定 m…

如何在 Ubuntu 14.04 上更改 PHP 设置

简介 PHP 是一种服务器端脚本语言&#xff0c;被许多流行的 CMS 和博客平台如 WordPress 和 Drupal 所使用。它也是流行的 LAMP 和 LEMP 堆栈的一部分。更新 PHP 配置设置是设置基于 PHP 的网站时的常见任务。定位确切的 PHP 配置文件可能并不容易。通常在服务器上会有多个 PH…

弹性盒子(display: flex)布局

以下文章都可以参考 CSS - 完美解决 flex 布局下&#xff0c;一行显示固定个数&#xff08;平均分布&#xff09;并且强制换行&#xff0c;超出后 “靠左“ 对其&#xff08;详细解决方案&#xff0c;适用于 Web、Vue、React 等任何前端项目&#xff09;_flex设置一行几个-CSD…

linux下使用qt+mpv调用GPU硬件解码

linux下GPU硬件解码接口&#xff0c;常用的有vdpau和vaapi。 mpv是基于mplayer开发的一个播放器。此外&#xff0c;mpv还提供了函数库libmpv&#xff0c;通过使用libmpv可以编写一个简单的播放器。 基于qtlibmpv的demo&#xff0c;官方例子代码如下&#xff1a;https://github.…

Quick Service Setup(快速服务设置)

Quick Service Setup界面使用户能够使用最少的参数快速配置和编辑简单的应用程序服务。Alteon自动为虚拟服务创建所需的对象(虚拟服务器、服务器组、真实服务器、SSL策略、FastView策略等)。通过快速服务设置&#xff0c;您可以配置HTTP, HTTPS&#xff0c;基本slb(第4层TCP或U…

Python-VBA函数之旅-classmethod函数

目录 一、装饰器的定义&#xff1a; 二、装饰器类型&#xff1a; 三、装饰器的主要用途&#xff1a; 四、classmethod常用场景&#xff1a; 1、classmethod函数&#xff1a; 1-1、Python&#xff1a; 1-2、VBA&#xff1a; 2、相关文章&#xff1a; classmethod是 Pyth…

【运维篇#2】查看每个docker的日志量并且清除多余日志

文章目录 清除日志查看现在每个docker容器中的日志量 清除日志 #!/bin/bash echo " start clean docker containers logs " logs$(find /var/lib/docker/containers/ -name *-json.log) for log in $logsdoecho "clean logs : $log"cat /dev/null > $l…