
模拟
文章平均质量分 60
Achanss
My life is good, and u just make it better!
展开
-
YTU_3313: Barnicle(模拟)
3313: Barnicle时间限制: 1 Sec 内存限制: 128 MB提交: 28 解决: 4[提交][状态][讨论版][命题人:acm4302]题目描述Barney站在酒吧里,主演一个漂亮的女孩。他想用丘比特之箭射击她,但他需要知道他和女孩之间的距离才能使他的射击准确。 Barney向酒吧招标Carl询问了这个距离值,但是Carl很忙于与客户交谈,所以他在餐巾纸上写...原创 2018-09-13 19:52:13 · 395 阅读 · 2 评论 -
The 2018 ACM-ICPC Asia Qingdao Regional Contest —— Books(模拟 + 水题)
#include<bits/stdc++.h>using namespace std;typedef long long ll;const int inf = 0x3f3f3f3f;const int maxn = (int) 1e5 + 5;int a[maxn];int main(void){ //freopen("in.txt","r",stdin);原创 2018-11-06 12:58:56 · 224 阅读 · 0 评论 -
PAT(甲级) 1009 Product of Polynomials (简易模拟)
#include<iostream>#include<iomanip>#include<string>#include<vector>#include<cmath>using namespace std;const int maxn = 1000 + 5;typedef struct { int exp; float c...原创 2019-08-13 13:59:43 · 162 阅读 · 0 评论 -
PAT(甲级) 1005 (简易模拟)
#include<iostream>#include<cstdio>#include<stdio.h>#include<string.h>#include<string>#include<map>using namespace std;map<char, string> alp;void init(...原创 2019-08-09 23:39:23 · 259 阅读 · 0 评论