codechef April Challenge 2018 Div2(1-4)

来源:https://www.cnblogs.com/zwfymqz/archive/2018/05/11/9026630.html
-Advertisement-
Play Games

T1 簽到題,兩種情況分別計算然後取個min T2 不會QWQ.... 首先一個很顯然的性質就是當$w >8$或$w < -9$的時候是無解的 否則,我們令$D_1=x$,$D_N = x +W$,這樣其它的數就可以任意取了,有$10^{N - 2}$種方案 然後把$x$的取值乘上 具體見代碼吧 T ...


T1

簽到題,兩種情況分別計算然後取個min

#include<vector>
#include<map>
#include<cstdio>
#define min(x, y) (x < y ? x : y)
#define max(x, y) (x < y ? y : x)
#define abs(x) (x < 0 ? - x : x)
#define Pair pair<int, int>
#define MP(x, y) make_pair(x, y)
using namespace std;
const int MAXN = 1e6 + 10, INF = 1e9 + 10;
inline int read() {
	char c = getchar(); int x = 0, f = 1;
	while(c < '0' || c > '9'){if(c == '-') f = -1;  c = getchar();}
	while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
	return x * f;
}
int N;
int a[MAXN];
int x = INF, y = INF, z = INF;
int main() {
	#ifdef WIN32
	freopen("a.in", "r", stdin);
	#endif
	N = read();
	for(int i = 1; i <= N; i++) a[i] = read();
	for(int i = 1; i <= N; i++) {
		int opt = read();
		if(opt == 1) x = min(x, a[i]);
		else if(opt == 2) y = min(y, a[i]);
		else if(opt == 3) z = min(z, a[i]);
	}
	printf("%d", min(x + y, z));
	return 0; 
} 

T2

不會QWQ....

首先一個很顯然的性質就是當$w >8$或$w < -9$的時候是無解的

否則,我們令$D_1=x$,$D_N = x +W$,這樣其它的數就可以任意取了,有$10^{N - 2}$種方案

然後把$x$的取值乘上

具體見代碼吧

#include<cstdio>
#include<cstring>
#include<vector>
#include<map>
#include<cmath>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/hash_policy.hpp>
#define LL long long 
using namespace __gnu_pbds;
using namespace std;
const LL MAXN = 1e6 + 10, INF = 1e9 + 10, mod = 1e9 + 7;
inline LL read() {
	char c = getchar(); LL x = 0, f = 1;
	while(c < '0' || c > '9'){if(c == '-') f = -1;  c = getchar();}
	while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
	return x * f;
}
LL T, N, W;
LL fastpow(LL a, LL p) {
	LL base = 1;
	while(p) {
		if(p & 1) base = (base * a) % mod;
		p >>= 1; a = (a * a ) % mod;
	}
	return base % mod;
}
main() {
	#ifdef WIN32
	freopen("a.in", "r", stdin);
	//freopen("b.out", "w", stdout);
	#endif
	T = read();
	while(T--) {
		N = read(), W = read();
		if(W > 8 || W < -9 ) {printf("0\n"); continue;}	
		printf("%lld\n", (W >= 0 ? (9 - W) * fastpow(10, N - 2) : (10 + W) * fastpow(10, N - 2) ) % mod); 
	}
}  

  

T3

考慮到值域很小,首先預處理出每個值的出現次數

然後枚舉所有值,再枚舉一個斷點,根據這個數拆開後的兩個數的出現次數算貢獻

兩個數相同的時候需要特判

存值域可以讓每個數加上下界,也可以直接用cc_hash_table,可以卡過

#include<cstdio>
#include<cstring>
#include<vector>
#include<map>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/hash_policy.hpp>
#define min(x, y) (x < y ? x : y)
#define max(x, y) (x < y ? y : x)
#define abs(x) (x < 0 ? - x : x)
#define Pair pair<int, int>
#define MP(x, y) make_pair(x, y)
#define int long long 
 
using namespace __gnu_pbds;
using namespace std;
const int MAXN = 1e6 + 10, INF = 1e9 + 10;
inline int read() {
	char c = getchar(); int x = 0, f = 1;
	while(c < '0' || c > '9'){if(c == '-') f = -1;  c = getchar();}
	while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
	return x * f;
}
int T, N;
int a[MAXN];
 
cc_hash_table<int,int>vis;
cc_hash_table<int,bool>happen;
main() {
	#ifdef WIN32
	freopen("a.in", "r", stdin);
	#endif
	T = read(); 
	while(T--) {
		N = read();
		int mx = -INF, mi = INF; vis.clear(); happen.clear();
		for(int i = 1; i <= N; i++) a[i] = read(), mx = max(a[i], mx), mi = min(a[i], mi);
		for(int i = 1; i <= N; i++)
			vis[a[i]]++;
		int ans = 0;
		for(int i = 1; i <= N; i++) {
			int limit = 2 * a[i];
			if(happen[limit]) continue;
			for(int j = mi; j <= mx; j++) {
				if(vis[j] && vis[limit - j]) {
					if(j == (limit - j)) ans += (vis[j] - 1) * vis[j];
					else ans += vis[j] * vis[limit - j];
				}
			}
			happen[limit] = 1;
		}
		printf("%lld\n", ans / 2);
	}
}  

  

T4

沒啥可說的

大力特判,細節巨多

#include<cstdio>
#include<cstring>
#include<vector>
#include<map>
#include<cmath>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/hash_policy.hpp>
#define int long long 
using namespace __gnu_pbds;
using namespace std;
const int MAXN = 1e6 + 10, INF = 1e9 + 10;
inline int read() {
	char c = getchar(); int x = 0, f = 1;
	while(c < '0' || c > '9'){if(c == '-') f = -1;  c = getchar();}
	while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
	return x * f;
}
int T, N;
char s[MAXN];
int a[MAXN], b[MAXN];
main() {
	#ifdef WIN32
	freopen("a.in", "r", stdin);
	freopen("b.out", "w", stdout);
	#endif
	scanf("%d", &T);
	while(T--) {
		scanf("%s", s + 1); scanf("%d", &N);
		int L = strlen(s + 1);
		for(int i = 1; i <= L; i++) 
			a[i] = a[i - 1], b[i] = b[i - 1], s[i] == 'a' ? a[i]++ : b[i]++;
		int ans = 0;
		if(a[L] > b[L]) {
			for(int i = 1; i <= L; i++) {
				if(a[i] > b[i]) ans = ans + N;
				else if(a[i] == b[i]) ans = ans + N - 1;
				else {
					ans = ans + max((int)0, N - 1 - (b[i] - a[i]) / (a[L] - b[L])); 
				}
			}	
		} 
		else if(a[L] == b[L]) {
			for(int i = 1; i <= L; i++) {
				if(a[i] > b[i]) ans = ans + N;
				else continue; 
			}
		}
		else {
			for(int i = 1; i <= L; i++) {
				if(a[i] > b[i]) 
					ans = ans + min(N, (a[i] - b[i]) / (b[L] - a[L]) + (bool)((a[i] - b[i]) % (b[L] - a[L])));
				else continue;
			}	
		}
		printf("%lld\n", ans);
	}
}  

  

剩下的還沒做

等APIO結束再說吧(估計也做不動了)

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、字典的概念 字典跟列表很像,特別是表達方式通過花括弧代替方括弧。當然,字典的元素通過左邊部分為鍵右邊部分為值通過冒號來分割。 二、字典的創建 {'jack': 4098, 'sape': 4139, 'yellow': 8466}{'jack': 4098, 'sape': 4139, 'yel ...
  • 【程式1】 題目:古典問題:有一對兔子,從出生後第3個月起每個月都生一對兔子,小兔子長到第三個月後每個月又生一對兔子,假如兔子都不死,問每個月的兔子總數為多少? 1.程式分析:兔子的規律為數列1,1,2,3,5,8,13,21.... 具體分析如下: 分析:從第一個兔子開始,第1個月1只兔子,由於“ ...
  • 在研究學術之餘,來複習一下java的SpringMVC框架,最近也沒什麼項目,所以也有一段時間沒有看這個框架了,都有點陌生了,現在每天都在看論文,研究方案,做實驗,在論文看不下去的時候就來學習一下SPringMVC也是不錯的選擇,哈哈哈!!!!!! 1. springmvc框架 1.1 什麼是spr ...
  • 一.protobuf 安裝 protobuf版本:2.6.1 下載地址:https://github.com/google/protobuf/archive/v2.6.1.zip 解壓之後進入目錄 修改autogen.sh 將autogen.sh內的上述內容修改為 然後執行autogen.sh ./ ...
  • DTL 變數 標簽 過濾器 1. 語法:{ { 變數|過濾器 }},例如{ { name|lower }},表示將變數name的值變為小寫輸出 2. 使用管道符號 (|)來應用過濾器 3. 通過使用過濾器來改變變數的計算結果 4. 可以在if標簽中使用過濾器結合運算符 ...
  • pandas 基礎 serise 0 4 1 7 2 5 3 3 dtype: int64 array([ 4, 7, 5, 3], dtype=int64) RangeIndex(start=0, stop=4, step=1) 1 7 3 3 dtype: int64 1 7 2 5 dtype ...
  • 這是java的一條規則。那麼為什麼會有這條規則呢?要想弄懂這個問題,就需要弄懂局部內部類對象和局部變數的生命周期的誰更長的問題。 首先,看一段代碼,以沒有將變數聲明為final的代碼作為例子,代碼如下: 如上面的第7行代碼所示,變數x沒有被聲明為final,如果是這樣的話,當執行完第26行的outM ...
  • 本次和大家分享的是dubbo框架應用的初略配置和zookeeper註冊中心的使用;說到註冊中心現在我使用過的只有兩種:zookeeper和Eureka,zk我結合dubbo來使用,而Eureka結合springcloud使用,因此後面將和大家分享一些關於微服務的一些篇章,希望對你有好的幫助。 安裝註 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...