5532  Almost Sorted Array

题目大意:给你一个序列,如果它拿掉其中一个数后,可以是该序列成为非递减或非递增序列,则输出YES。

有两种思路,第一种代码比较简单,是LIS,复杂度nlogn,第二种是On的复杂度。

LIS的代码如下。

 #include <set>
 #include <queue>
 #include <cstdio>
 #include <vector>
 #include <cstring>
 #include <algorithm>
 using namespace std;
 typedef long long LL;
 #define mem(x,y) memset(x, y, sizeof(x))
 #define lson l,m,rt << 1
 #define rson m+1,r,rt << 1 | 1

 const int INF = 0x3f3f3f3f;
 ;
 int s[maxn], dp[maxn];
 int T, n;
 bool judge()
 {
     mem(dp, INF);
     ; i < n; i++)
     {
         *upper_bound(dp, dp + n, s[i]) = s[i];
     }
     int len = lower_bound(dp, dp + n, INF) - dp;
     mem(dp, INF);
     ; i < n; i++)
     {
         *upper_bound(dp, dp + n, -s[i]) = -s[i];
     }
     int len2 =  lower_bound(dp, dp + n, INF) - dp;
     len = max(len2, len);

     );
 }

 int main()
 {
     scanf("%d",&T);
     while(T--)
     {
         scanf("%d", &n);
         ; i < n; i++)
         {
             scanf("%d", s+i);
         }
         printf("%s\n", judge() ? "YES" : "NO");
     }
     ;
 }

5533  Dancing Stars on Me题意:给你n个点对,然后求一个正多边形(当然是凸的)。问存不存在。

题目给的坐标都是整数,看一看那个tanα = 1 / n (n = 1, 2, 3, 4,....)好像只有α = 45°的时候才有可能构成正多边形。

然后瞎搞搞。。

#include <cstdio>
#include <algorithm>
using namespace std;
;
int T, n;
];
struct ss{int x, y;}s[maxn];
int get_dis(int x1, int y1, int x2, int y2)
{
    return  (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
}

int main()
{
    scanf("%d", &T);
    while(T--)
    {
        scanf("%d", &n);
        ; i < n; i++)
        {
            scanf("%d%d", &s[i].x, &s[i].y);
        }
        ) {printf("NO\n");continue;}

        , tot = ;
        ; i < n; i++)
        {
            ; j < n; j++)
            {
                temp[tot] = get_dis(s[i].x, s[i].y, s[j].x, s[j].y);
                tot++;
            }
        }
        sort(temp, temp + tot);
        ] == temp[]) ok = ;
        printf("%s\n", ok ? "YES" : "NO");
    }
    ;
}

5536  Chip Factory

题意:在数组a中找到三个数满足,ai+aj ^ ak 的值最大且i,j,k各不相同。

经典的异或用01字典树,推荐使用数组形式,快而且内存小。

 #include <cstdio>
 #include <cstring>
 #include <algorithm>
 using namespace std;
 typedef long long LL;
  + ;
  * maxn;
 int n, T;
 LL a[maxn];
 LL sz, ch[maxnode][], val[maxnode];

 void init()
 {
     sz = ;
     memset(ch[], , ]));
 }

 //d=1表示插入,d=-1表示删除
 void trie_update(LL x, int d)
 {
     ;
     ; i >= ; i--)
     {
         ;
         if(!ch[u][c])
         {
             memset(ch[sz], , sizeof(ch[sz]));
             val[sz] = ;
             ch[u][c] = sz++;
         }
         u = ch[u][c];
         val[u] += d;
     }
 }

 LL trie_query(LL v)
 {
     LL ans = ;
     ;
     ; i >= ; i--)
     {
         ;
         ] && val[ch[u][c ^ ]])
         {
             ans |= ( << i);
             u = ch[u][c ^ ];
         }
         else u = ch[u][c];
     }
     return ans;
 }

 int main()
 {
     scanf("%d", &T);
     while(T--)
     {
         init();
         scanf("%d", &n);
         ; i < n; i++)
         {
             scanf("%I64dd", a + i);
             trie_update(a[i], );
         }

         LL ans = (a[] + a[]) ^ a[];
         ; i < n; i++)
         {
             trie_update(a[i], -);
             ; j < n; j++)
             {
                 trie_update(a[j], -);
                 LL temp = trie_query((LL)a[i] + a[j]);
                 ans = max(ans, temp);
                 trie_update(a[j], );
             }
             trie_update(a[i], );
         }

         printf("%I64d\n", ans);
     }

     ;
 }

5538  House Building

题意:求这个东西的表面积。

 #include <cstdio>
 #include <algorithm>
 using namespace std;
 int n, m, T;
 #define judge(x, y) 0 <= x && x < n && 0 <= y && y < m
 ][];
 , , -, };
 , -, , };
 int main()
 {
     scanf("%d", &T);
     while(T--)
     {
         , bottom = , cnt = ;
         scanf("%d%d", &n, &m);
         ; i < n; i++)
         {
             ; j < m; j++)
             {
                 scanf("%d", &ma[i][j]);
                 tot += ma[i][j];
                 if(ma[i][j])        bottom++;
                 )    cnt += (ma[i][j] - ) * ;
             }
         }
          * tot - bottom - cnt;
         ;
         ; i < n; i++)
         {
             ; j < m; j++)
             {
                 ; k < ; k++)
                 {
                     int fx = i + dx[k];
                     int fy = j + dy[k];
                     if(judge(fx, fy))
                     {
                         d += min(ma[fx][fy], ma[i][j]);
                     }
                 }
             }

         }
         ans -= d;
         printf("%d\n", ans);
     }
     ;
 }

2015ACM/ICPC亚洲区长春站的更多相关文章

  1. 2015ACM/ICPC亚洲区长春站 L hdu 5538 House Building

    House Building Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) ...

  2. 2015ACM/ICPC亚洲区长春站 J hdu 5536 Chip Factory

    Chip Factory Time Limit: 18000/9000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)T ...

  3. 2015ACM/ICPC亚洲区长春站 H hdu 5534 Partial Tree

    Partial Tree Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)To ...

  4. 2015ACM/ICPC亚洲区长春站 G hdu 5533 Dancing Stars on Me

    Dancing Stars on Me Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Ot ...

  5. 2015ACM/ICPC亚洲区长春站 F hdu 5533 Almost Sorted Array

    Almost Sorted Array Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Ot ...

  6. 2015ACM/ICPC亚洲区长春站 E hdu 5531 Rebuild

    Rebuild Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)Total S ...

  7. 2015ACM/ICPC亚洲区长春站 B hdu 5528 Count a * b

    Count a * b Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)Tot ...

  8. 2015ACM/ICPC亚洲区长春站 A hdu 5527 Too Rich

    Too Rich Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)Total ...

  9. HDU-5532//2015ACM/ICPC亚洲区长春站-重现赛-F - Almost Sorted Array/,哈哈,水一把区域赛的题~~

    F - Almost Sorted Array Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & ...

随机推荐

  1. PHPstorm的数据库功能

    PHPstorm真是神器,居然有表.视图.存储过程的功能,非常人性化,建表那叫一个舒服,而且sql语句可以像其他代码一样显示"区域",结构更加清晰.

  2. Linux 内核数据结构:Linux 双向链表

    Linux 内核提供一套双向链表的实现,你可以在 include/linux/list.h 中找到.我们以双向链表着手开始介绍 Linux 内核中的数据结构 ,因为这个是在 Linux 内核中使用最为 ...

  3. MySQL插入数据返回id

    按照应用需要,常常要取得刚刚插入数据库表里的记录的ID值,在MYSQL中可以使用LAST_INSERT_ID()函数,在MSSQL中使用 @@IDENTITY.挺方便的一个函数.但是,这里需要注意的是 ...

  4. kafka入门:简介、使用场景、设计原理、主要配置及集群搭建(转)

    问题导读: 1.zookeeper在kafka的作用是什么? 2.kafka中几乎不允许对消息进行"随机读写"的原因是什么? 3.kafka集群consumer和producer状 ...

  5. gis数据格式转换(数据导入)ConvertFeaCls

    本文主要对数据导入等里 常用的不同格式数据创建.转换等 进行代码示例.主要用到IFeatureDataConverter.ConvertFeatureClass方法. 代码如下,难度不大,只是个技巧问 ...

  6. Mac Sublime Text complie python .py error /bin/bash: shell_session_update: command not found

    1.get the rvm version rvm -v 2.make sure the version at least 1.26 above. 3.then go ahead rvm get he ...

  7. Pandas-数据整理

    Pandas包对数据的常用整理功能,相当于数据预处理(不包括特征工程) 目录 丢弃值 drop() 缺失值处理 isnull() & notnull() dropna() fillna() 值 ...

  8. (转载)JavaWeb学习总结(五十二)——使用JavaMail创建邮件和发送邮件

    博客源地址:http://www.cnblogs.com/xdp-gacl/p/4216311.html 一.RFC882文档简单说明 RFC882文档规定了如何编写一封简单的邮件(纯文本邮件),一封 ...

  9. 2014 Multi-University Training Contest 9#6

    2014 Multi-University Training Contest 9#6 Fast Matrix CalculationTime Limit: 2000/1000 MS (Java/Oth ...

  10. ssh框架整合-NoClassDefFoundError-NoSuchMethodError-遁地龙卷风

    (-1)写在前面 spring2.0.struts1.2.hibernate3.0.myeclipse8.5.tomcat6.0,整合之中出现了很多问题,前几天忙着整理毕业论文的资料,时间腾出来了,总 ...