暴力
文章平均质量分 65
gyk1303
这个作者很懒,什么都没留下…
展开
-
P4414 [COCI2006-2007#2] ABC
题目描述You will be given three integers A, B and C. The numbers will not be given in that exact order, but we do know that A is less than B and B less than C. In order to make for a more pleasant viewing, we want to rearrange them in the given order.输入格式原创 2021-11-20 12:18:57 · 680 阅读 · 0 评论 -
暴力练习打卡(简单篇)
一:查找特定的值在一个序列(下标从1开始)中查找一个给定的值,输出第一次出现的位置。输入格式第一行包含一个正整数n,表示序列中元素个数。1≤n≤10000。第二行包含n个整数,依次给出序列的每个元素,相邻两个整数之间用单个空格隔开。元素的绝对值不超过10000。第三行包含一个整数x,为需要查找的特定值。xx的绝对值不超过10000。输出格式若序列中存在x,输出x第一次出现的下标;否则输出-1。AC代码;#include<bits/stdc...原创 2021-11-07 12:31:38 · 424 阅读 · 0 评论 -
暴力练习打卡(简单篇)(c++)
一:P2241 统计方形(数据加强版)题目背景1997年普及组第一题题目描述有一个 n×m方格的棋盘,求其方格包含多少正方形、长方形(不包含正方形)。输入格式一行,两个正整数n,m(n≤5000,m≤5000)。输出格式一行,两个正整数,分别表示方格包含多少正方形、长方形(不包含正方形)。AC代码:#include<bits/stdc++.h>using namespace std;int main(){ long long int .原创 2021-11-06 17:17:39 · 179 阅读 · 0 评论