Holes (SDUT 2018 Autumn Individual Contest
#include <iostream> #include<stdio.h> using namespace std; int main() {freopen("holes.in","r",stdin); freopen("holes.out","w",stdout); int n; scanf("%d",&n); int l=n/2; int t=n%2; if(n==0)cout<<"1"<<endl; if(n==1)cout<<"0"<<endl; if(n!=0&&n!=1) { if(t!=0)cout<<"4"; while(l) { cout<<"8"; l--; } cout<<endl; } return 0; }
相關推薦
Holes (SDUT 2018 Autumn Individual Contest
#include <iostream> #include<stdio.h> using namespace std; int main() {freopen("holes.in","r",stdin); freopen("holes
Por Costel and Azerah(SDUT 2018 Autumn Individual Contest
Por Costel the Pig has received a royal invitation to the palace of the Egg-Emperor of Programming, Azerah. Azerah had heard of the re
Problem (D.SDUT 2018 Autumn Individual Contest
Problem D. Deposits Input file: deposits.in Output file: deposits.out Time limit: 3 seconds Memory limit: 256 megabytes Financial cris
SDUT 2018 Winter Individual Contest
題目連結 * G 記憶化搜尋 題目的意思: 給你兩個陣列a,b 讓a,b兩個陣列按其原序進行組合,問能否組合成為c陣列。 我們可以試著用搜索的方式進行處理,但是由於資料較大,而且在處理的過程中,有重疊的狀態,所以我們需要用到記憶話,對於原先有的狀態之後
ZOJ - 4068 Airdrop (思維)(The 2018 ACM-ICPC Asia Qingdao Regional Contest - K)
Airdrop Time Limit: 2 Seconds Memory Limit: 65536 KB PUBG is a multiplayer online battle royale vide
Traveling on the Axis (The 2018 ACM-ICPC Asia Qingdao Regional Contest, Online)
題目連結: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4054 題意就是一個小孩走一段路,這條路上有n個紅綠燈,並且告訴了你初始紅綠燈的狀態,用1表示路燈,0表示紅燈,並且沒經過一秒紅綠燈就轉換,從綠燈變為紅燈或
【NOIP2012P】尋寶(於2018.2.12)
神題 整數 blog get 簡單 tail num 編號 syn 問題描述 藏寶樓共有N+1層,最上面一層是頂層,頂層有一個房間裏面藏著寶藏。除了頂層外,藏寶樓另有N層,每層M個房間,這M個房間圍成一圈並按逆時針方向依次編號為0,…,M-1。其中一些房間有通往上一層的
G - Best Cow Fences (POJ - 2018)
class 前綴數組 mes cout () light cin ret ace - 題目大意 給你n個牛的自身價值,讓你找出連續的且數量大於等於F的一段區間,使這段區間內的牛的平均價值最大。 - 解題思路 這道題可以用二分法也可以結合前綴數組來求和來做
Petrozavodsk Winter-2018. Jagiellonian U Contest
線性基 二分 har iostream meet 時間 stdio.h 滿足 pair A. XOR 求出所有數的異或和$sum$,將所有數and上$sum$,然後求線性基,則選取$sum$的所有$1$對應的基最優。 時間復雜度$O(n\log x)$。 #inc
WebLogic 任意文件上傳 遠程代碼執行漏洞 (CVE-2018-2894)------->>>任意文件上傳檢測POC
htm input ade print out vcg exc ops 上傳 前言: Oracle官方發布了7月份的關鍵補丁更新CPU(Critical Patch Update),其中針對可造成遠程代碼執行的高危漏洞 CVE-2018-2894 進行修復: http:
18.phpmyadmin 4.8.1 遠端檔案包含漏洞(CVE-2018-12613)
phpmyadmin 4.8.1 遠端檔案包含漏洞(CVE-2018-12613) phpMyAdmin是一套開源的、基於Web的MySQL資料庫管理工具。其index.php中存在一處檔案包含邏輯, 通過二次編碼即可繞過檢查,造成遠端檔案包含漏洞。 受影響版本: phpMyAdmin 4.8.0和4
【Leetcode周賽】從contest-81開始。(一般是10個contest寫一篇文章)
Contest 81 (2018年11月8日,週四,凌晨) 連結:https://leetcode.com/contest/weekly-contest-81 比賽情況記錄:結果:3/4, ranking: 440/2797。這次題目似乎比較簡單,因為我比賽的時候前三題全做出來了(1:12:39),然後第
資料結構實驗之棧與佇列二:一般算術表示式轉換成字尾式(SDUT 2132)
題目連結 #include <bits/stdc++.h> using namespace std; typedef long long ll; int ok(char ch, char sh) { if(sh == '(')return 1; if((ch ==
資料結構實驗之棧與佇列六:下一較大值(二)(SDUT 3333)
#include <bits/stdc++.h> using namespace std; int a[1000006]; int b[1000006]; int sta[100006]; int main() { int t,n,i,j,top; while(~sc
資料結構實驗之棧與佇列五:下一較大值(一)(SDUT 3332)
#include <bits/stdc++.h> using namespace std; int a[1005]; int main() { int t,n,i,j; while(~scanf("%d",&t)) { while(t-
資料結構實驗之棧與佇列三:字尾式求值(SDUT 2133)
題解:把每一步計算的答案再存在棧裡面,直到計算結束。 如果是運算元 那麼直接入棧;如果是運算子,那麼把棧裡面最頂部的兩個運算元拿出來進行運算,運算結果再放入到棧裡面,計算完所有的(#
資料結構實驗之棧與佇列四:括號匹配(SDUT 2134)
#include <bits/stdc++.h> using namespace std; typedef long long ll; char s[100]; char a[100]; int main() { int i,j,k,f,top,len; while(
Nginx 漏洞 (CVE-2018-16843,CVE-2018-16844)
近日 nginx 被爆出存在安全問題,有可能會致使 1400 多萬臺伺服器易遭受 DoS ***。而導致安全問題的漏洞存在於 HTTP/2 和 MP4 模組中。 nginx Web 伺服器於 11 月 6 日 釋出了新版本 ,用於修復影響 1.15.6, 1.14.1 之前版本的多個安全問題,被發現的安全問
歸程(NOIP 2018 遊記)
(本文為 Friday, November 16, 2018 補敘,非日記。) Day 0 晚上覆習了LCA。其實下午試機時就寫了一遍,但是寫得十分不熟練,於是晚上又寫了兩遍。後面兩天的事實證明,還是樹鏈剖分比較有用,比dfs序上做RMQ有用多了……(可惜我程式碼敲不出來,只能寫寫RMQ、倍增之類的。)還
資料結構實驗之圖論三:判斷可達性(SDUT 2138)(簡單DFS)
#include <bits/stdc++.h> using namespace std; int gra[1002][1005]; int vis[1002]; int n,m; void dfs(int x) { vis[x] = 1; for(int i = 1