博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforce922B (Magic Forest)
阅读量:6185 次
发布时间:2019-06-21

本文共 1564 字,大约阅读时间需要 5 分钟。

B. Magic Forest
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Imp is in a magic forest, where xorangles grow (wut?)

A xorangle of order n is such a non-degenerate triangle, that lengths of its sides are integers not exceeding n, and the xor-sum of the lengths is equal to zero. Imp has to count the number of distinct xorangles of order n to get out of the forest.

Formally, for a given integer n you have to find the number of such triples (a, b, c), that:

  • 1 ≤ a ≤ b ≤ c ≤ n;
  • , where denotes the of integers x and y.
  • (a, b, c) form a non-degenerate (with strictly positive area) triangle.
Input

The only line contains a single integer n (1 ≤ n ≤ 2500).

Output

Print the number of xorangles of order n.

Examples
Input
Copy
6
Output
1
Input
Copy
10
Output
2
Note

The only xorangle in the first sample is (3, 5, 6).

 

分析:暴力出奇迹=_=。

#include
#include
using namespace std;int main(){ int N,ans=0; scanf("%d",&N); for(int i=1;i<=N;i++) { for(int j=i+1;j<=N;j++) { int MAX=min(N+1,i+j);//i+j>k&&i+k>j&&k+j>iprintf("(%d,%d,%d)\n",i,j,k); for(int k=j+1;k
View Code

 

 这个15ms左右: 

#include
int main(){ int N,ans=0; scanf("%d",&N); for(int i=1;i<=N;i++) { for(int j=i+1;j<=N;j++) { int k=i^j; if(k>j&&k<=N&&i+j>k&&i+k>j&&k+j>i) ans++; } } printf("%d\n",ans); return 0;}
View Code

 

 

转载于:https://www.cnblogs.com/ACRykl/p/8461278.html

你可能感兴趣的文章
Django 01
查看>>
域名跳转
查看>>
访问控制
查看>>
两人一组,注册账号密码,注册COOKIE是否能够登陆?
查看>>
Object-C中使用NSKeyedArchiver归档(将各种类型的对象存储到文件中)
查看>>
一位大牛整理的python资源
查看>>
设计模式 单例模式(Singleton)
查看>>
jqurey 隐藏
查看>>
Python-编码(base64,md5)
查看>>
Cisco Eigrp SIA 理解
查看>>
正则表达式学习
查看>>
Ceph分布式存储更换磁盘操作步骤
查看>>
使用windows server 2008创建DHCP服务器
查看>>
TextView预渲染研究
查看>>
【迁移2016-07-02 20:46】Tomcat(一)-重定向Web应用程序目录
查看>>
MySQL数据库的下载及安装教程
查看>>
转 Library cache内部机制详解
查看>>
[每日一题]11gOCP 1z0-052 :2013-09-11 MGR_ROLE role..........................................A66
查看>>
我的友情链接
查看>>
虚拟机虚拟网卡作用
查看>>