相关文章
leetcode 869. Reordered Power of 2 | 869. 重新排序得到 2 的幂(状态压缩)
题目
https://leetcode.com/problems/reordered-power-of-2/
题解
class Solution {public boolean reorderedPowerOf2(int n) {Set<Long> set new HashSet<>();int target 1;for (int i 0; i < 31; i) {set.add(compress(target));target << 1;}r…
建站知识
2024/10/13 14:05:57
10.28 leetcode每日一题 869. 重新排序得到 2 的幂
869. 重新排序得到 2 的幂
给定正整数 N ,我们按任何顺序(包括原始顺序)将数字重新排序,注意其前导数字不能为零。
如果我们可以通过上述方式得到 2 的幂,返回 true;否则,返回 false。 示例 1…
建站知识
2024/10/9 20:48:06
西安建筑科技大学2017年869程序设计
1、(15分)设计一个程序从键盘读入一段英文文本,统计各字母和数字出现次数,并将结果输出显示器。(基础题) #include <stdio.h>
#include <string.h>
#define N 100
int main()
{char str[N];int…
建站知识
2025/1/20 3:37:30
西安建筑科技大学2018年869程序设计
1、编写实现输入一行字符,统计共有多少个单词,其中单词之间用空格分开。
(基础题)
#include <stdio.h>
#define N 100
int main()
{char str[N];int count 0;int i;gets(str)…
建站知识
2024/12/26 18:48:23
LeetCode每日一题之869.重新排序得到2的幂
LeetCode每日一题之869. 重新排序得到 2 的幂
题目链接地址
给定正整数 N ,我们按任何顺序(包括原始顺序)将数字重新排序,注意其前导数字不能为零。
如果我们可以通过上述方式得到 2 的幂,返回 true;否则…
建站知识
2025/1/20 3:45:39
Codeforces Round 869 (Div. 2) (A~C)
感觉这场好靠直觉以及猜测,有时候感觉就不能完全说服自己。 A. Politics
分析
这题一直读,感觉读好久没读明白又反复读,后面看了一下样例,自己是第一个一定要选并且留到最后,如果在一个情况和我不同的意见࿰…
建站知识
2024/10/9 20:48:18
Codeforces Round #869 (Div. 2) (题解)
Codeforces Round #869 (Div. 2) (题解)
CodeForces1818A
原题链接
思路:每次投票与1不一样的直接扔出去
#include <bits/stdc.h>using i64 long long;
using PII std::pair<i64,i64>;
#define int i64
#define yes std::cout << "YES\n";
#…
建站知识
2024/10/14 0:48:19
Codeforces Round 869 (Div. 2) A~C
A. Politics
思路:不难发现,跟1号(领导)表决权一样的留下,不一样的滚蛋
#include <bits/stdc.h>
#pragma GCC optimize(3,"Ofast","inline")
#pragma GCC optimize(2)
using namespace st…
建站知识
2024/10/9 20:48:12