中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當前位置: 首頁 > news >正文

網(wǎng)站標識代碼怎么加網(wǎng)絡(luò)產(chǎn)品運營與推廣

網(wǎng)站標識代碼怎么加,網(wǎng)絡(luò)產(chǎn)品運營與推廣,wordpress ui iphone,??诰W(wǎng)站建設(shè)搜q479185700洛谷P1101單詞方陣:用sta存字符串,for找到‘y的位置,然后dfs對字符串用for進行一個一個的判斷,不符合就return,下面再用for進行book標記,能執(zhí)行下面的for說明上面沒有return,所以說明找到&#…

洛谷P1101單詞方陣:用sta存字符串,for找到‘y'的位置,然后dfs對字符串用for進行一個一個的判斷,不符合就return,下面再用for進行book標記,能執(zhí)行下面的for說明上面沒有return,所以說明找到,book標記字符串長度就行,然后for+if判斷book為true就輸出,不然就輸出*就行。

#include<iostream>
#include<cstring>
using namespace std;
const int N = 105;
int n;
string sta = "yizhong";
char ch[N][N];
bool book[N][N];
int dx[8] = {0, 0, 1, -1, 1, -1, 1, -1}, dy[8] = {1, -1, 0, 0, 1, -1, -1, 1};
void dfs(int x, int y, int xd, int yd){int a = x + xd, b = y + yd;for(int i = 1; i < 7; i++){if(sta[i] != ch[a][b])return;a += xd;b += yd;}for(int i = 0; i < 7; i++){book[x][y] = true;x += xd;y += yd;} 
}
int main(){cin >> n;for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){cin >> ch[i][j];}}for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){if(ch[i][j] == 'y'){for(int k = 0; k < 8; k++) dfs(i, j, dx[k], dy[k]);} } }for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){if(book[i][j]) cout << ch[i][j];else cout << '*' ;}cout << endl;}return 0;
}

洛谷P2404自然數(shù)的拆分問題:DFS

#include<iostream>
using namespace std;
int n, m;
int p[15] = {1};
void dfs(int x){for(int i = p[x - 1]; i <= m; i++){if(i == n)continue;p[x] = i;m -= i;if(m == 0){for(int j = 1; j < x; j++){cout << p[j] << '+';}cout << p[x] << endl;}else dfs(x + 1);m += i;}
}
int main(){cin >> n;m = n;dfs(1);return 0;
}

洛谷P1596一道BFS,求連通塊數(shù)量。

#include<iostream>
#include<queue>
using namespace std;
const int N = 105;
int n, m;
bool st[N][N];
char ch[N][N];
int ans;
int dx[8] = {0, 0, 1, -1, 1, -1, 1, -1};
int dy[8] = {1, -1, 0, 0, 1, -1, -1, 1};
typedef pair<int, int> PII;
void bfs(int a, int b){queue<PII> q;q.push({a, b});st[a][b] = true;while(q.size()){auto t = q.front();q.pop();int x = t.first, y = t.second;for(int i = 0; i < 8; i++){int xx = x + dx[i], yy = y + dy[i];if(xx >= 1 && xx <= n && yy >= 1 && yy <= m && !st[xx][yy] && ch[xx][yy] == 'W'){st[xx][yy] = true;q.push({xx, yy});}}}ans++;
}
int main(){cin >> n >> m;for(int i = 1; i <= n; i++){for(int j = 1; j <= m; j++){cin >> ch[i][j];}}for(int i = 1; i <= n; i++){for(int j = 1; j <= m; j++){if(ch[i][j] == 'W' && !st[i][j])bfs(i, j);}}cout << ans << endl;return 0;
}

洛谷P1162填色:相當于圍墻加水,里面的是水也就是2, 外面的為0,外面從0,0開始把圍墻外的數(shù)通過BFS都給標記成3,然后是3就輸出0,原來的圍墻1不變,然后圍墻里面本來是0,的就輸出2。

#include<iostream>
#include<queue>
using namespace std;
const int N = 35;
int a[N][N];
int n;
bool st[N][N];
int dx[4] = {0, 0, 1, -1}, dy[4] = {1, -1, 0, 0};
typedef pair<int, int> PII; 
void bfs(){queue<PII> q;q.push({0, 0});st[0][0] = true;while(q.size()){auto t = q.front();q.pop();int x = t.first, y = t.second;for(int i = 0; i < 4; i++){int xx = x + dx[i], yy = y + dy[i];if(xx >= 0 && xx <= n + 1 && yy >= 0 && yy <= n + 1 && !st[xx][yy] && a[xx][yy] == 0){a[xx][yy] = 3;st[xx][yy] = true;q.push({xx, yy});}}}
}
int main(){cin >> n;for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){cin >> a[i][j];}}bfs();for(int i = 1; i <= n; i++){for(int j = 1; j <= n; j++){if(a[i][j] == 3) cout << 0 << ' ';else if(a[i][j] == 1) cout << 1 << ' ';else cout << 2 << ' '; }cout << endl;}return 0;
}

http://www.risenshineclean.com/news/30384.html

相關(guān)文章:

  • 學(xué)做餃子餡上那個網(wǎng)站推廣優(yōu)化師
  • 局域網(wǎng)建設(shè)簡單的影視網(wǎng)站seo搜狗排名點擊
  • 荔灣網(wǎng)站制作如何搜索網(wǎng)頁關(guān)鍵詞
  • 有什么網(wǎng)站可以做微信支付寶支付寶一鍵制作單頁網(wǎng)站
  • 惠州有哪些做網(wǎng)站的公司百度熱門
  • 幫客戶做網(wǎng)站平臺犯法嗎南寧關(guān)鍵詞優(yōu)化公司
  • 服裝市場網(wǎng)站建設(shè)互聯(lián)網(wǎng)營銷師報名費
  • 域名購買后網(wǎng)站搭建賬號seo是什么
  • 自己怎么做VIP視頻解網(wǎng)站汕頭網(wǎng)站建設(shè)技術(shù)外包
  • 橙子建站客服電話2020 惠州seo服務(wù)
  • 京網(wǎng)站建設(shè)公司百度地圖收錄提交入口
  • 程序員 做網(wǎng)站 微信公眾號 賺錢寧波seo推廣費用
  • 做網(wǎng)站也是一門技術(shù)惠州網(wǎng)絡(luò)營銷
  • 網(wǎng)站 禁止ping百度seo推廣
  • 網(wǎng)站建設(shè)必學(xué)課程深圳谷歌seo推廣
  • 阿里巴巴做網(wǎng)站找誰泰州百度seo公司
  • 網(wǎng)站運行與維護網(wǎng)絡(luò)推廣外包內(nèi)容
  • 網(wǎng)頁上海公司seo工資服務(wù)
  • 免費網(wǎng)站開發(fā)軟件平臺愛站網(wǎng)長尾詞挖掘工具
  • 網(wǎng)站開發(fā)要什么樣的環(huán)境代運營公司
  • 網(wǎng)站建設(shè)網(wǎng)站軟文范文
  • 番禺手機網(wǎng)站制作推廣行者seo
  • 做外貿(mào)網(wǎng)站效果站長是什么級別
  • 網(wǎng)站設(shè)計與網(wǎng)頁配色實例精講nba最新新聞新浪
  • 做英文企業(yè)網(wǎng)站多錢錢上海百度推廣官方電話
  • 建設(shè)標準 免費下載網(wǎng)站磁力天堂torrentkitty
  • 部落沖突做任務(wù)網(wǎng)站百度熱搜廣告位
  • 給公司做網(wǎng)站銷售怎樣啦網(wǎng)絡(luò)公司品牌推廣
  • 企業(yè)戰(zhàn)略規(guī)劃方案北京seo網(wǎng)絡(luò)推廣
  • 網(wǎng)頁設(shè)計公司金華關(guān)鍵詞排名優(yōu)化公司外包